aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite/complexity
diff options
context:
space:
mode:
authorGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2006-11-01 09:14:07 +0000
committerGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2006-11-01 09:14:07 +0000
commita3b5647d1850e86655f546e0a175364df07de893 (patch)
tree5c0b473422aabe78c1cfca164abd30058c8b1ccc /test-suite/complexity
parentcec87055e59a80091416a57d0687ae4199860756 (diff)
Ajout test setoid_rewrite (cf bug #1176); anglicisation
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@9330 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'test-suite/complexity')
-rw-r--r--test-suite/complexity/pretyping.v (renamed from test-suite/complexity/pretypage.v)0
-rw-r--r--test-suite/complexity/setoid_rewrite.v10
2 files changed, 10 insertions, 0 deletions
diff --git a/test-suite/complexity/pretypage.v b/test-suite/complexity/pretyping.v
index c271fb50b..c271fb50b 100644
--- a/test-suite/complexity/pretypage.v
+++ b/test-suite/complexity/pretyping.v
diff --git a/test-suite/complexity/setoid_rewrite.v b/test-suite/complexity/setoid_rewrite.v
new file mode 100644
index 000000000..3b5a0de79
--- /dev/null
+++ b/test-suite/complexity/setoid_rewrite.v
@@ -0,0 +1,10 @@
+(* Check bug #1176 *)
+(* Expected time < 0.50s *)
+
+Require Import Setoid.
+
+Variable f : nat -> Prop.
+
+Goal forall U:Prop, f 100 <-> U.
+intros U.
+Time setoid_replace U with False.