Skip to content
Snippets Groups Projects
Commit db198d68 authored by dgelessus's avatar dgelessus
Browse files

Merge branch 'develop'

parents bfc69eae 135c1fd4
No related branches found
No related tags found
No related merge requests found
Pipeline #112166 passed
Showing
with 4490 additions and 4485 deletions
......@@ -127,8 +127,13 @@ public class LTLFormulaPrinter extends DepthFirstAdapter {
@Override
public void caseAEnabledLtl(AEnabledLtl node) {
LinkedHashMap<String, Node> operations = ltlFormulaVisitor
.getMachineContext().getOperations();
tlaPrinter.moduleStringAppend("ENABLED(");
tlaPrinter.moduleStringAppend(node.getOperation().getText());
//tlaPrinter.moduleStringAppend(node.getOperation().getText());
String action1Name = node.getOperation().getText();
Node op1 = operations.get(action1Name);
tlaPrinter.printOperationCall(op1);
tlaPrinter.moduleStringAppend(")");
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment