Skip to content

Commit

Permalink
green
Browse files Browse the repository at this point in the history
  • Loading branch information
gert-smolka committed Jul 17, 2024
1 parent 670003a commit 94adb57
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion coq/arec.v
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(*** Arithmetic Recursion *)
(*** MPCTT, Chapter Arithmetic Recursion *)
From Coq Require Import Lia.
Definition dec (X: Type) : Type := X + (X -> False).
Definition eqdec X := forall x y: X, dec (x = y).
Expand Down
2 changes: 2 additions & 0 deletions coq/solver.v
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
(*** MPCTT, Chapter Propositional Deduction Systems *)

From Coq Require Import List Lia.
Definition dec (X: Type) : Type := X + (X -> False).
Definition eqdec X := forall x y: X, dec (x = y).
Expand Down

0 comments on commit 94adb57

Please sign in to comment.