diff options
author | Stephane Glondu <steph@glondu.net> | 2008-08-08 13:18:42 +0200 |
---|---|---|
committer | Stephane Glondu <steph@glondu.net> | 2008-08-08 13:18:42 +0200 |
commit | 870075f34dd9fa5792bfbf413afd3b96f17e76a0 (patch) | |
tree | 0c647056de1832cf1dba5ba58758b9121418e4be /test-suite/complexity | |
parent | a0cfa4f118023d35b767a999d5a2ac4b082857b4 (diff) |
Imported Upstream version 8.2~beta4+dfsgupstream/8.2.beta4+dfsg
Diffstat (limited to 'test-suite/complexity')
-rw-r--r-- | test-suite/complexity/ring2.v | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test-suite/complexity/ring2.v b/test-suite/complexity/ring2.v index 9f9685dd..e1a799f0 100644 --- a/test-suite/complexity/ring2.v +++ b/test-suite/complexity/ring2.v @@ -1,7 +1,7 @@ (* This example, checks the efficiency of the abstract machine used by ring *) (* Expected time < 1.00s *) -Require Import BinInt. +Require Import BinInt Zbool. Definition Zplus x y := match x with @@ -42,7 +42,7 @@ Ltac Zcst t := end. Add Ring Zr : Zth - (decidable Zeqb_ok, constants [Zcst]). + (decidable Zeq_bool_eq, constants [Zcst]). Open Scope Z_scope. Infix "+" := Zplus : Z_scope. |