aboutsummaryrefslogtreecommitdiffhomepage
path: root/library/keys.mli
diff options
context:
space:
mode:
authorGravatar Matthieu Sozeau <matthieu.sozeau@inria.fr>2014-09-24 11:16:11 +0200
committerGravatar Matthieu Sozeau <matthieu.sozeau@inria.fr>2014-09-27 21:22:50 +0200
commitad2e11471dbfc0894b4fdfedd895e7f0a75bd930 (patch)
tree20c6b4107dd5a5a584e060920922289d16ce0cbc /library/keys.mli
parent929cba74dc2ba2d1b232b61fb3539babad9e7c76 (diff)
First version of keyed subterm selection in unification.
Diffstat (limited to 'library/keys.mli')
-rw-r--r--library/keys.mli15
1 files changed, 15 insertions, 0 deletions
diff --git a/library/keys.mli b/library/keys.mli
new file mode 100644
index 000000000..4e6a803e4
--- /dev/null
+++ b/library/keys.mli
@@ -0,0 +1,15 @@
+(************************************************************************)
+(* v * The Coq Proof Assistant / The Coq Development Team *)
+(* <O___,, * INRIA - CNRS - LIX - LRI - PPS - Copyright 1999-2012 *)
+(* \VV/ **************************************************************)
+(* // * This file is distributed under the terms of the *)
+(* * GNU Lesser General Public License Version 2.1 *)
+(************************************************************************)
+
+open Globnames
+
+val declare_keys : global_reference -> global_reference -> unit
+(** Declare two keys as being equivalent. *)
+
+val equiv_keys : global_reference -> global_reference -> bool
+(** Check equivalence of keys. *)