diff options
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. |