We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 181694f commit bade670Copy full SHA for bade670
1 file changed
BoltLean/Ltl.lean
@@ -21,8 +21,8 @@ namespace Formula
21
def accepts (phi: Formula n) (t: Trace n): Prop :=
22
match t with
23
| .nil => match phi with
24
- | True | WeakNext _ | Globally _ => _root_.True
25
- | False | Finally _ | Var _ _ | Next _ | Until _ _ => _root_.False
+ | True | Globally _ => _root_.True
+ | False | Finally _ | Var _ _ | Next _ | WeakNext _ | Until _ _ => _root_.False
26
| Or psi1 psi2 => (accepts psi1 t) ∨ (accepts psi2 t)
27
| And psi1 psi2 => (accepts psi1 t) ∧ (accepts psi2 t)
28
| head::tail => match phi with
0 commit comments