Skip to content

Commit

Permalink
Use lia instead of omega in examples
Browse files Browse the repository at this point in the history
  • Loading branch information
nosewings committed Jun 25, 2024
1 parent c0d5a10 commit c0e79f0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/tests/NonStructuralRec/edits
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ rename value NonStructuralRec.S = S
rename value NonStructuralRec.add = Nat.add

termination NonStructuralRec.mapTree2 { measure (NonStructuralRec.size arg_1__) }
obligations NonStructuralRec.mapTree2 prog_omega
obligations NonStructuralRec.mapTree2 prog_lia
4 changes: 2 additions & 2 deletions examples/tests/NonStructuralRec/preamble.v
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
Require Coq.Program.Tactics.
Require Omega.
Ltac prog_omega := Coq.Program.Tactics.program_simpl;simpl;Omega.omega.
Require Lia.
Ltac prog_lia := Coq.Program.Tactics.program_simpl;simpl;Lia.lia.

0 comments on commit c0e79f0

Please sign in to comment.