-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBLoopStatement.java
80 lines (65 loc) · 2.28 KB
/
BLoopStatement.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
import java.util.Vector;
/* Package: B AMN */
/******************************
* Copyright (c) 2003,2019 Kevin Lano
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0
*
* SPDX-License-Identifier: EPL-2.0
* *****************************/
public class BLoopStatement extends BStatement
{ private BExpression test;
private BExpression invariant;
private BExpression variant;
private BStatement body;
public BLoopStatement(BExpression tst, BExpression inv, BExpression var, BStatement bdy)
{ test = tst;
invariant = inv;
variant = var;
body = bdy;
}
public BExpression getTest()
{ return test; }
public BExpression getInvariant()
{ return invariant; }
public BExpression getVariant()
{ return variant; }
public String toString()
{ return "WHILE " + test + "\n" +
" DO " + body + "\n" +
" INVARIANT " + invariant + "\n" +
" VARIANT " + variant + "\n" +
"END";
}
public BStatement substituteEq(String oldE, BExpression newE)
{ // BExpression nlhs = lhs.substituteEq(oldE,newE);
BExpression ntest = test.substituteEq(oldE,newE);
BExpression ninvariant = invariant.substituteEq(oldE,newE);
BExpression nvariant = variant.substituteEq(oldE,newE);
BStatement nbody = body.substituteEq(oldE,newE);
return new BLoopStatement(ntest,ninvariant,nvariant,nbody);
}
public BStatement simplify()
{ // BExpression nlhs = lhs.substituteEq(oldE,newE);
BExpression ntest = test.simplify();
BExpression ninvariant = invariant.simplify();
BExpression nvariant = variant.simplify();
BStatement nbody = body.simplify();
return new BLoopStatement(ntest,ninvariant,nvariant,nbody);
}
public Vector wr()
{ return body.wr(); }
public Vector rd()
{ Vector res = new Vector();
res.addAll(test.rd());
res = VectorUtil.union(res,body.rd());
return res;
}
public BStatement seq2parallel()
{ return this; }
public BStatement normalise()
{ BStatement nbody = body.normalise();
return new BLoopStatement(test,invariant,variant,nbody);
}
}