aboutsummaryrefslogtreecommitdiffhomepage
path: root/checker/check_stat.ml
diff options
context:
space:
mode:
authorGravatar Pierre-Marie Pédrot <pierre-marie.pedrot@inria.fr>2016-06-18 18:59:36 +0200
committerGravatar Pierre-Marie Pédrot <pierre-marie.pedrot@inria.fr>2016-06-18 19:38:45 +0200
commit371d69b334837c51d0dc998ddefbd072ac8dde2f (patch)
treed030b2e5fbd6fe9c7bba68e5fb80d2546ab96f92 /checker/check_stat.ml
parentecb032467557631ea60324c6afa55c91c133e40d (diff)
Fixing the checker.
I had to remove code handling the -type-in-type option introduced by commit 9c732a5. We should fix it at some point, but I am not sure that using the checker with a system known to be blatantly inconsistent makes much sense anyway.
Diffstat (limited to 'checker/check_stat.ml')
-rw-r--r--checker/check_stat.ml7
1 files changed, 1 insertions, 6 deletions
diff --git a/checker/check_stat.ml b/checker/check_stat.ml
index a63705adc..f196746a5 100644
--- a/checker/check_stat.ml
+++ b/checker/check_stat.ml
@@ -23,16 +23,11 @@ let print_memory_stat () =
let output_context = ref false
-let pr_engagement (impr_set,type_in_type) =
+let pr_engagement impr_set =
begin
match impr_set with
| ImpredicativeSet -> str "Theory: Set is impredicative"
| PredicativeSet -> str "Theory: Set is predicative"
- end ++ fnl() ++
- begin
- match type_in_type with
- | StratifiedType -> str "Theory: Stratified type hierarchy"
- | TypeInType -> str "Theory: Type is of type Type"
end
let cst_filter f csts =