Do not simplify F([*0]) and G([*0]). Make sure it does not happen.

* src/ltlast/unop.hh, src/ltlast/unop.cc: Replace the
simplification by an assert.
This commit is contained in:
Alexandre Duret-Lutz 2010-10-25 17:00:53 +02:00
parent 473cf77144
commit 5bb171c8f6
2 changed files with 5 additions and 8 deletions

View file

@ -60,10 +60,10 @@ namespace spot
/// - GG(Exp) = G(Exp)
/// - F(0) = 0
/// - G(0) = 0
/// - X(0) = 0
/// - F(1) = 1
/// - G(1) = 1
/// - F([*0]) = 1
/// - G([*0]) = 1
/// - X(1) = 1
/// - !1 = 0
/// - !0 = 1
/// - ![*0] = 1[+] (read below)