aboutsummaryrefslogtreecommitdiffhomepage
path: root/checker/check.mli
diff options
context:
space:
mode:
authorGravatar Pierre-Marie Pédrot <pierre-marie.pedrot@inria.fr>2017-11-28 20:23:54 +0100
committerGravatar Pierre-Marie Pédrot <pierre-marie.pedrot@inria.fr>2017-11-29 10:56:36 +0100
commit45192ccb907349f0ec51c3d2ac577920c4016119 (patch)
treedcda1c5bd25c2d1946cfbc9672a2d6a457659188 /checker/check.mli
parent0168f040e29c3bbaeb666f0b793f41627f154e12 (diff)
Allow to pass physical files to coqchk.
Diffstat (limited to 'checker/check.mli')
-rw-r--r--checker/check.mli10
1 files changed, 7 insertions, 3 deletions
diff --git a/checker/check.mli b/checker/check.mli
index ef87e3efa..28ae385b5 100644
--- a/checker/check.mli
+++ b/checker/check.mli
@@ -14,6 +14,10 @@ type section_path = {
basename : string;
}
+type object_file =
+| PhysicalFile of physical_path
+| LogicalFile of section_path
+
type logical_path = DirPath.t
val default_root_prefix : DirPath.t
@@ -21,6 +25,6 @@ val default_root_prefix : DirPath.t
val add_load_path : physical_path * logical_path -> unit
val recheck_library :
- norec:section_path list ->
- admit:section_path list ->
- check:section_path list -> unit
+ norec:object_file list ->
+ admit:object_file list ->
+ check:object_file list -> unit