summaryrefslogtreecommitdiff
path: root/compiler/SymbolicToPure.ml
diff options
context:
space:
mode:
authorSon Ho2022-12-17 07:09:49 +0100
committerSon HO2023-02-03 11:21:46 +0100
commitd585060e227921e9f650f5dbcd308bf492d13583 (patch)
tree950081fabe9ea9e0078efcaa18bfa412f6fdb017 /compiler/SymbolicToPure.ml
parent9b37e05e4861375f40dfdd35472468354f21280c (diff)
Fix another bug
Diffstat (limited to '')
-rw-r--r--compiler/SymbolicToPure.ml3
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/SymbolicToPure.ml b/compiler/SymbolicToPure.ml
index f06e6542..3488b334 100644
--- a/compiler/SymbolicToPure.ml
+++ b/compiler/SymbolicToPure.ml
@@ -284,9 +284,10 @@ let fun_decl_to_string (ctx : bs_ctx) (def : Pure.fun_decl) : string =
let abs_to_string (ctx : bs_ctx) (abs : V.abs) : string =
let fmt = bs_ctx_to_ast_formatter ctx in
let fmt = Print.Contexts.ast_to_value_formatter fmt in
+ let verbose = false in
let indent = "" in
let indent_incr = " " in
- Print.Values.abs_to_string fmt indent indent_incr abs
+ Print.Values.abs_to_string fmt verbose indent indent_incr abs
let get_instantiated_fun_sig (fun_id : A.fun_id)
(back_id : T.RegionGroupId.id option) (tys : ty list) (ctx : bs_ctx) :