Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
general
stups
ProB Rodin Plugin
Commits
161c9162
Commit
161c9162
authored
Mar 08, 2013
by
Daniel Plagge
Browse files
minor refactoring
parent
43e1923e
Changes
1
Hide whitespace changes
Inline
Side-by-side
de.prob.core/src/de/prob/eventb/translator/internal/TranslationVisitor.java
View file @
161c9162
...
...
@@ -450,10 +450,8 @@ public class TranslationVisitor implements ISimpleVisitor {
public
void
visitRelationalPredicate
(
final
RelationalPredicate
predicate
)
{
// EQUAL, NOTEQUAL, LT, LE, GT, GE, IN, NOTIN, SUBSET,
// NOTSUBSET, SUBSETEQ, NOTSUBSETEQ
predicate
.
getLeft
().
accept
(
this
);
final
PExpression
left
=
expressions
.
pop
();
predicate
.
getRight
().
accept
(
this
);
final
PExpression
right
=
expressions
.
pop
();
final
PExpression
left
=
getExpression
(
predicate
.
getLeft
());
final
PExpression
right
=
getExpression
(
predicate
.
getRight
());
final
PPredicate
result
;
switch
(
predicate
.
getTag
())
{
case
Formula
.
EQUAL
:
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment