-
-
Notifications
You must be signed in to change notification settings - Fork 81
Expand file tree
/
Copy pathSolver.v
More file actions
12 lines (10 loc) · 575 Bytes
/
Copy pathSolver.v
File metadata and controls
12 lines (10 loc) · 575 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
(** * The reflective categorical-equality solver (umbrella import).
Re-exports the proof-by-reflection decision procedure for equalities of
morphisms in a free category: [Reify] (Ltac that reflects a goal into
abstract syntax), [Normal] (the free-category normal form and its
denotation-preserving soundness), and [Decide] (the decision procedure
and its soundness theorem). Import this to get the [categorical] /
[normalize] tactics. *)
Require Export Category.Solver.Reify.
Require Export Category.Solver.Normal.
Require Export Category.Solver.Decide.