aboutsummaryrefslogtreecommitdiff
path: root/kernel/reduction.ml
diff options
context:
space:
mode:
authorGaëtan Gilbert2020-03-18 17:57:12 +0100
committerGaëtan Gilbert2020-03-18 17:57:12 +0100
commitcb9413483bcd2a6bc91fb439343550bb6f425e5b (patch)
treeac6c39c3455e5260143556ff88a14a6ce314aacf /kernel/reduction.ml
parentfb7292570380e0490d7c74db1718725149996ffd (diff)
Rename Retypeops -> Relevanceops
This module used to do retyping for the kernel in prototypes of SProp, but was switched to only relevance inference before the merge.
Diffstat (limited to 'kernel/reduction.ml')
-rw-r--r--kernel/reduction.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/reduction.ml b/kernel/reduction.ml
index 5fbe501169..469d5ccaa2 100644
--- a/kernel/reduction.ml
+++ b/kernel/reduction.ml
@@ -331,7 +331,7 @@ let skip_pattern infos n c1 c2 =
let is_irrelevant infos lft c =
let env = info_env infos.cnv_inf in
- try Retypeops.relevance_of_fterm env infos.relevances lft c == Sorts.Irrelevant with _ -> false
+ try Relevanceops.relevance_of_fterm env infos.relevances lft c == Sorts.Irrelevant with _ -> false
(* Conversion between [lft1]term1 and [lft2]term2 *)
let rec ccnv cv_pb l2r infos lft1 lft2 term1 term2 cuniv =