-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBChoiceStatement.java
59 lines (49 loc) · 1.6 KB
/
BChoiceStatement.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
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
* *****************************/
public class BChoiceStatement extends BStatement
{ private BStatement left;
private BStatement right;
public BChoiceStatement(BStatement l, BStatement r)
{ left = l;
right = r;
}
public String toString()
{ return "CHOICE " + left + " OR " + right + " END"; }
public Vector wr()
{ Vector res = new Vector();
res.addAll(left.wr());
return VectorUtil.union(res,right.wr());
}
public Vector rd()
{ Vector res = new Vector();
res.addAll(left.rd());
return VectorUtil.union(res,right.rd());
}
public BStatement substituteEq(String oldE, BExpression newE)
{ BStatement nl = left.substituteEq(oldE,newE);
BStatement nr = right.substituteEq(oldE,newE);
return new BChoiceStatement(nl,nr);
}
public BStatement simplify()
{ BStatement nl = left.simplify();
BStatement nr = right.simplify();
return new BChoiceStatement(nl,nr);
}
public BStatement normalise()
{ BStatement ln = left.normalise();
BStatement rn = right.normalise();
return new BChoiceStatement(ln,rn);
}
public BStatement seq2parallel()
{ BStatement ln = left.seq2parallel();
BStatement rn = right.seq2parallel();
return new BChoiceStatement(ln,rn);
}
}