mirror of
https://github.com/achlipala/frap.git
synced 2024-11-10 08:17:52 +00:00
Booleans and [propositional]
This commit is contained in:
parent
e4bdbbfbdf
commit
3ae5327314
1 changed files with 3 additions and 2 deletions
5
Frap.v
5
Frap.v
|
@ -1,5 +1,5 @@
|
||||||
Require Import String Arith Omega Program Sets Relations Map Var Invariant.
|
Require Import String Arith Omega Program Sets Relations Map Var Invariant Bool.
|
||||||
Export String Arith Sets Relations Map Var Invariant.
|
Export String Arith Sets Relations Map Var Invariant Bool.
|
||||||
Require Import List.
|
Require Import List.
|
||||||
Export List ListNotations.
|
Export List ListNotations.
|
||||||
Open Scope string_scope.
|
Open Scope string_scope.
|
||||||
|
@ -44,6 +44,7 @@ Ltac invert1 e := invert0 e || (invert e; []).
|
||||||
Ltac invert2 e := invert1 e || (invert e; [|]).
|
Ltac invert2 e := invert1 e || (invert e; [|]).
|
||||||
|
|
||||||
Ltac simplify := repeat progress (simpl in *; intros; try autorewrite with core in *).
|
Ltac simplify := repeat progress (simpl in *; intros; try autorewrite with core in *).
|
||||||
|
Ltac propositional := intuition idtac.
|
||||||
|
|
||||||
Ltac linear_arithmetic := intros;
|
Ltac linear_arithmetic := intros;
|
||||||
repeat match goal with
|
repeat match goal with
|
||||||
|
|
Loading…
Reference in a new issue