diff options
Diffstat (limited to 'test-suite/complexity/ring2.v')
-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 ab57afdb..6945edc8 100644 --- a/test-suite/complexity/ring2.v +++ b/test-suite/complexity/ring2.v @@ -11,7 +11,7 @@ match x with | 0%Z => x | Zpos y' => Zpos (x' + y') | Zneg y' => - match (x' ?= y')%positive Eq with + match (x' ?= y')%positive with | Eq => 0%Z | Lt => Zneg (y' - x') | Gt => Zpos (x' - y') @@ -21,7 +21,7 @@ match x with match y with | 0%Z => x | Zpos y' => - match (x' ?= y')%positive Eq with + match (x' ?= y')%positive with | Eq => 0%Z | Lt => Zpos (y' - x') | Gt => Zneg (x' - y') |