diff options
author | Son Ho | 2022-01-12 14:24:18 +0100 |
---|---|---|
committer | Son Ho | 2022-01-12 14:24:18 +0100 |
commit | ff85490235c7f661d2f41b65f436b0e239e6119d (patch) | |
tree | 7b11fb857c1fcffcc03be08a2979ac1e3a19893b | |
parent | 6cae457948a4aaa2f94b0bdfad8eb4ab42054751 (diff) | |
parent | 6268a942eec4ab143cf898af219f6a1324e5204d (diff) |
Merge branch 'main' of github.com:Kachoc/aeneas into main
-rw-r--r-- | src/InterpreterUtils.ml | 1 | ||||
-rw-r--r-- | src/main.ml | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/InterpreterUtils.ml b/src/InterpreterUtils.ml index 6aa3199b..fd596fd3 100644 --- a/src/InterpreterUtils.ml +++ b/src/InterpreterUtils.ml @@ -6,6 +6,7 @@ module E = Expressions module C = Contexts module Subst = Substitute module A = CfimAst +module L = Logging open Utils open TypesUtils module PA = Print.EvalCtxCfimAst diff --git a/src/main.ml b/src/main.ml index da0b4a0a..d8e9aa40 100644 --- a/src/main.ml +++ b/src/main.ml @@ -7,7 +7,8 @@ module I = Interpreter module EL = Easy_logging.Logging (* This is necessary to have a backtrace when raising exceptions - for some - * reason, the -g option doesn't work *) + * reason, the -g option doesn't work. + * JP: are you running with OCAMLRUNPARAM=b=1? *) let () = Printexc.record_backtrace true let usage = |