Skip to content

Commit

Permalink
--
Browse files Browse the repository at this point in the history
  • Loading branch information
marcpouzet committed Oct 23, 2024
1 parent 98a4644 commit 783d2e5
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 22 deletions.
11 changes: 0 additions & 11 deletions src/global/misc.ml
Original file line number Diff line number Diff line change
Expand Up @@ -94,14 +94,3 @@ let lustre = ref false
(* no information associated to expressions *)
type no_info = unit
let no_info: no_info = ()

(* static reduction *)
let static_reduction = ref false

(* check equivalence *)
let equivalence_checking = ref false

(* sets the inline flags *)
let inlining_level = ref 10
let set_inlining_level l = inlining_level := l
let inline_all = ref false
11 changes: 0 additions & 11 deletions src/zrun/zrun.ml
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,6 @@ let doc_esterel =
let doc_lustre =
"\tSets the interpretation of if/then/else to be strict \n\
\t\t(that of Lustre)"
let doc_static_reduction =
"\tReduce static (compile-time) expressions"
let doc_check =
"\tCheck equivalence at every program transformation \n\
\t\tfor the number of steps"
and doc_inlining_level = "<n> \t Level of inlining"
and doc_inline_all = "\t Inline all function calls"

let errmsg = "Options are:"

Expand All @@ -71,10 +64,6 @@ let main () =
doc_number_of_fixpoint_iterations;
"-esterel", Arg.Set Misc.esterel, doc_esterel;
"-lustre", Arg.Set Misc.lustre, doc_lustre;
"-static", Arg.Set Misc.static_reduction, doc_static_reduction;
"-check", Arg.Set Misc.equivalence_checking, doc_check;
"-inline", Arg.Int Misc.set_inlining_level, doc_inlining_level;
"-inlineall", Arg.Set inline_all, doc_inline_all;
])
main
errmsg
Expand Down

0 comments on commit 783d2e5

Please sign in to comment.