diff options
author | Pierre Courtieu <Pierre.Courtieu@cnam.fr> | 2017-05-12 10:30:50 +0200 |
---|---|---|
committer | Pierre Courtieu <Pierre.Courtieu@cnam.fr> | 2017-05-16 11:11:01 +0200 |
commit | 697cd5a8e7927873ed6700c7e906ae3675bd98b1 (patch) | |
tree | 566af56f6a9fd30fae43a94b18931a5e0453a2a6 /test-suite | |
parent | 06f3ce00971283d2718e272ec9f123430d75ffa6 (diff) |
Simplified compaction criterion + tests.
Diffstat (limited to 'test-suite')
-rw-r--r-- | test-suite/output/CompactContexts.out | 7 | ||||
-rw-r--r-- | test-suite/output/CompactContexts.v | 5 |
2 files changed, 12 insertions, 0 deletions
diff --git a/test-suite/output/CompactContexts.out b/test-suite/output/CompactContexts.out new file mode 100644 index 000000000..9d1d19877 --- /dev/null +++ b/test-suite/output/CompactContexts.out @@ -0,0 +1,7 @@ +1 subgoal + + hP1 : True + a : nat b : list nat h : forall x : nat, {y : nat | y > x} + h2 : True + ============================ + False diff --git a/test-suite/output/CompactContexts.v b/test-suite/output/CompactContexts.v new file mode 100644 index 000000000..07588d34f --- /dev/null +++ b/test-suite/output/CompactContexts.v @@ -0,0 +1,5 @@ +Set Printing Compact Contexts. + +Lemma f (hP1:True) (a:nat) (b:list nat) (h:forall (x:nat) , { y:nat | y > x}) (h2:True): False. +Show. +Abort.
\ No newline at end of file |