aboutsummaryrefslogtreecommitdiffhomepage
path: root/plugins/romega/const_omega.mli
diff options
context:
space:
mode:
authorGravatar Maxime Dénès <mail@maximedenes.fr>2018-02-19 11:12:52 +0100
committerGravatar Maxime Dénès <mail@maximedenes.fr>2018-02-19 11:12:52 +0100
commiteaff61e0a19fcf6ebc2a9a8ae17327413274c67b (patch)
treeacbbc416ad78bf8520893405c04855c600909576 /plugins/romega/const_omega.mli
parent073b92396a68be30f77c80960a58ca562bb01f49 (diff)
parent68935660fbfdec2e357e123ed999073ed3b8fc26 (diff)
Merge PR #6771: [engine] Remove ghost parameter from `Proofview.Goal.t`
Diffstat (limited to 'plugins/romega/const_omega.mli')
-rw-r--r--plugins/romega/const_omega.mli4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/romega/const_omega.mli b/plugins/romega/const_omega.mli
index 5ba063d9d..ecddc55de 100644
--- a/plugins/romega/const_omega.mli
+++ b/plugins/romega/const_omega.mli
@@ -105,7 +105,7 @@ module type Int =
(* the coq type of the numbers *)
val typ : constr Lazy.t
(* Is a constr expands to the type of these numbers *)
- val is_int_typ : [ `NF ] Proofview.Goal.t -> constr -> bool
+ val is_int_typ : Proofview.Goal.t -> constr -> bool
(* the operations on the numbers *)
val plus : constr Lazy.t
val mult : constr Lazy.t
@@ -116,7 +116,7 @@ module type Int =
(* parsing a term (one level, except if a number is found) *)
val parse_term : constr -> parse_term
(* parsing a relation expression, including = < <= >= > *)
- val parse_rel : [ `NF ] Proofview.Goal.t -> constr -> parse_rel
+ val parse_rel : Proofview.Goal.t -> constr -> parse_rel
(* Is a particular term only made of numbers and + * - ? *)
val get_scalar : constr -> Bigint.bigint option
end