aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorChimrod <>2023-10-16 16:42:53 +0200
committerChimrod <>2023-10-18 11:19:35 +0200
commit0b75cd5bc0f7d0ad905bce5bebc6e47c927f64d7 (patch)
tree9381b4b3b6c06104d773978f330f073b805a40f0 /bin
parent736456d9952c1d58008f4ca5755913dfff7a32b8 (diff)
Used the dead-end checker in main analysis
Diffstat (limited to 'bin')
-rw-r--r--bin/qsp_parser.ml3
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/qsp_parser.ml b/bin/qsp_parser.ml
index 93f44f4..8ab442b 100644
--- a/bin/qsp_parser.ml
+++ b/bin/qsp_parser.ml
@@ -20,9 +20,10 @@ type ctx = { error_nb : int; warn_nb : int; debug_nb : int }
List all the controls to apply
*)
let _, _, _, e1 = Qsp_syntax.Check.build (module Qsp_syntax.Type_of)
+let _, _, _, e2 = Qsp_syntax.Check.build (module Qsp_syntax.Dead_end)
module Check = Qsp_syntax.Check.Make (struct
- let t = [| e1 |]
+ let t = [| e1; e2 |]
end)
(** Read the source file until getting a report (the whole location has been