Browse Source

Extended parseComplexFormulaTest to use nested path formulas

tempestpy_adaptions
Lanchid 12 years ago
parent
commit
e2f6b4b265
  1. 2
      test/parser/PrctlParserTest.cpp
  2. 2
      test/parser/prctl_files/complexFormula.prctl

2
test/parser/PrctlParserTest.cpp

@ -122,7 +122,7 @@ TEST(PrctlParserTest, parseComplexFormulaTest) {
ASSERT_NE(prctlParser->getFormula(), nullptr);
ASSERT_EQ(prctlParser->getFormula()->toString(), "(P <= 0.500000 [F a] && (R > 15.000000 [G !b] || P > 0.900000 [F<=7 (a && b)]))");
ASSERT_EQ(prctlParser->getFormula()->toString(), "(P <= 0.500000 [F a] && (R > 15.000000 [G P > 0.900000 [F<=7 (a && b)]] || !P < 0.400000 [G !b]))");
delete prctlParser->getFormula();
delete prctlParser;

2
test/parser/prctl_files/complexFormula.prctl

@ -1 +1 @@
(P<=0.5 [ F a ] & (R > 15 [ G !b ] | P>0.9 [F<=7 (a & b)]))
(P<=0.5 [ F a ] & (R > 15 [ G P>0.9 [F<=7 (a & b)] ] | !P < 0.4 [ G !b ]))
Loading…
Cancel
Save