コード例 #1
0
ファイル: TestEmptiness.cs プロジェクト: ancailliau/LtlSharp
 public void TestF6()
 {
     ITLFormula f = new Until (new Globally (p1), p2);
     AssertEquivalentEmptiness (f);
 }
コード例 #2
0
ファイル: TestEmptiness.cs プロジェクト: ancailliau/LtlSharp
 public void TestF1()
 {
     ITLFormula f = new Until (p1, p2);
     AssertEquivalentEmptiness (f);
 }
コード例 #3
0
ファイル: TestEmptiness.cs プロジェクト: ancailliau/LtlSharp
 public void TestF2()
 {
     ITLFormula f = new Until (p1, new Until (p2, p3));
     AssertEquivalentEmptiness (f);
 }
コード例 #4
0
ファイル: TestEmptiness.cs プロジェクト: ancailliau/LtlSharp
 public void TestNoSpawnUntilInit()
 {
     ITLFormula f0 = new Until (new Proposition ("spawn").Negate (), new Proposition ("init"));
     AssertEquivalentEmptiness (f0.Negate ());
 }