use of de.bmoth.parser.ast.nodes.ltl.LTLFormula in project bmoth by hhu-stups.
the class LTLBuechiTest method testGraphConstructionGp1Up2.
@Test
public void testGraphConstructionGp1Up2() throws ParserException {
String formula = "(G {3=4}) U ({2=3})";
LTLFormula ltlFormula = Parser.getLTLFormulaAsSemanticAst(formula);
LTLNode node = LTLTransformations.transformLTLNode(ltlFormula.getLTLNode());
BuechiAutomaton buechiAutomaton = new BuechiAutomaton(node);
assertEquals(5, buechiAutomaton.getFinalNodeSet().size());
logger.log(Level.INFO, buechiAutomaton::toString);
}
use of de.bmoth.parser.ast.nodes.ltl.LTLFormula in project bmoth by hhu-stups.
the class LTLBuechiTest method testGraphConstructionGFp1ImpliesGFp2.
@Test
@Ignore
public void testGraphConstructionGFp1ImpliesGFp2() throws ParserException {
String formula = "(GF {3=4}) => (GF {2=3})";
LTLFormula ltlFormula = Parser.getLTLFormulaAsSemanticAst(formula);
LTLNode node = LTLTransformations.transformLTLNode(ltlFormula.getLTLNode());
BuechiAutomaton buechiAutomaton = new BuechiAutomaton(node);
// should be 9?
assertEquals(6, buechiAutomaton.getFinalNodeSet().size());
logger.log(Level.INFO, buechiAutomaton::toString);
}
use of de.bmoth.parser.ast.nodes.ltl.LTLFormula in project bmoth by hhu-stups.
the class LTLBuechiTest method testGraphConstructionNotGloballyNextUntil.
@Test
public void testGraphConstructionNotGloballyNextUntil() throws ParserException {
String formula = "not G ( X ({3=4} U {2=3}) )";
LTLFormula ltlFormula = Parser.getLTLFormulaAsSemanticAst(formula);
LTLNode node = LTLTransformations.transformLTLNode(ltlFormula.getLTLNode());
BuechiAutomaton buechiAutomaton = new BuechiAutomaton(node);
assertEquals(5, buechiAutomaton.getFinalNodeSet().size());
logger.log(Level.INFO, buechiAutomaton::toString);
}
Aggregations