-
Notifications
You must be signed in to change notification settings - Fork 0
/
verifier_options.hl
24 lines (19 loc) · 1.05 KB
/
verifier_options.hl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
(* ========================================================================== *)
(* Formal verification of nonlinear inequalities in HOL Light *)
(* *)
(* Copyright (c) 2012 Alexey Solovyev *)
(* *)
(* This file is distributed under the terms of the MIT licence *)
(* ========================================================================== *)
(* -------------------------------------------------------------------------- *)
(* Options of the verification library *)
(* -------------------------------------------------------------------------- *)
module Verifier_options = struct
let report0 s =
Format.print_string s; Format.print_flush();;
(* Debug/info printing level:
0 - no debug/info printing
1 - print important messages only
2 - print all information *)
let info_print_level = ref 1;;
end;;