-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBAssignStatement.java
102 lines (84 loc) · 2.61 KB
/
BAssignStatement.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
import java.util.Vector;
/******************************
* 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
* *****************************/
/* Package: B AMN */
public class BAssignStatement extends BStatement
{ private BExpression lhs;
private BExpression rhs;
public BAssignStatement(BExpression l, BExpression r)
{ lhs = l;
rhs = r;
}
public BExpression getRhs()
{ return rhs; }
public BExpression getLhs()
{ return lhs; }
public String toString()
{ return lhs + " := " + rhs; }
public BStatement substituteEq(String oldE, BExpression newE)
{ // BExpression nlhs = lhs.substituteEq(oldE,newE);
BExpression nrhs = rhs.substituteEq(oldE,newE);
return new BAssignStatement(lhs,nrhs);
}
public BStatement simplify()
{ // BExpression nlhs = lhs.substituteEq(oldE,newE);
BExpression nrhs = rhs.simplify();
return new BAssignStatement(lhs,nrhs);
}
public Vector wr()
{ Vector res = new Vector();
if (lhs instanceof BBasicExpression)
{ res.add(lhs + "");
return res;
}
if (lhs instanceof BApplyExpression)
{ BApplyExpression bae = (BApplyExpression) lhs;
String f = bae.getFunction();
res.add(f);
return res;
}
return res;
}
public Vector rd()
{ Vector res = new Vector();
res.addAll(rhs.rd());
if (lhs instanceof BBasicExpression)
{ return res; }
if (lhs instanceof BApplyExpression)
{ BApplyExpression bae = (BApplyExpression) lhs;
BExpression arg = bae.getArgument();
res = VectorUtil.union(res,arg.rd());
return res;
}
return res;
}
public BStatement seq2parallel()
{ return this; }
public BStatement normalise()
{ if (lhs instanceof BBasicExpression)
{ return this; }
if (lhs instanceof BApplyExpression)
{ BApplyExpression bae = (BApplyExpression) lhs;
String f = bae.getFunction();
BExpression arg = bae.getArgument();
BExpression maplet =
new BBinaryExpression("|->",arg,rhs);
BSetExpression bse =
new BSetExpression();
bse.addElement(maplet);
BExpression newlhs =
new BBasicExpression(f);
BExpression newrhs =
new BBinaryExpression("<+",newlhs,bse);
newrhs.setBrackets(true);
return new BAssignStatement(newlhs,newrhs);
}
return this;
}
}