Ejemplo n.º 1
0
 public void TestF6()
 {
     ITLFormula f = new Until (new Globally (p1), p2);
     AssertEquivalentEmptiness (f);
 }
Ejemplo n.º 2
0
 public void TestF1()
 {
     ITLFormula f = new Until (p1, p2);
     AssertEquivalentEmptiness (f);
 }
Ejemplo n.º 3
0
 public void TestF2()
 {
     ITLFormula f = new Until (p1, new Until (p2, p3));
     AssertEquivalentEmptiness (f);
 }
Ejemplo n.º 4
0
 public void TestNoSpawnUntilInit()
 {
     ITLFormula f0 = new Until (new Proposition ("spawn").Negate (), new Proposition ("init"));
     AssertEquivalentEmptiness (f0.Negate ());
 }