summaryrefslogtreecommitdiff
path: root/src/Interpreter.ml
diff options
context:
space:
mode:
authorSon Ho2022-10-26 19:42:30 +0200
committerSon HO2022-10-26 19:45:09 +0200
commit16560ce5d6409e0f0326a0c6046960253e444ba4 (patch)
treec17058a7fb7e076134841271b7693ba18b1b9285 /src/Interpreter.ml
parente1f79b07440f35e5e6296b61819cf50e6f60f090 (diff)
Update the code documentation to fix links and syntax issues
Diffstat (limited to '')
-rw-r--r--src/Interpreter.ml6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Interpreter.ml b/src/Interpreter.ml
index 9308fa16..7f51c5b9 100644
--- a/src/Interpreter.ml
+++ b/src/Interpreter.ml
@@ -44,7 +44,7 @@ let initialize_eval_context (type_context : C.type_context)
Introduces local variables initialized in the following manner:
- input arguments are initialized as symbolic values
- - the remaining locals are initialized as ⊥
+ - the remaining locals are initialized as [⊥]
Abstractions are introduced for the regions present in the function
signature.
@@ -115,7 +115,7 @@ let initialize_symbolic_context_for_fun (type_context : C.type_context)
(** Small helper.
This is a continuation function called by the symbolic interpreter upon
- reaching the `return` instruction when synthesizing a *backward* function:
+ reaching the [return] instruction when synthesizing a *backward* function:
this continuation takes care of doing the proper manipulations to finish
the synthesis (mostly by ending abstractions).
*)
@@ -164,7 +164,7 @@ let evaluate_function_symbolic_synthesize_backward_from_return
(* Initialize and insert the abstractions in the context.
*
* We take care of disallowing ending the return regions which we
- * shouldn't end (see the documentation of the `can_end` field of [abs]
+ * shouldn't end (see the documentation of the [can_end] field of [abs]
* for more information. *)
let parent_and_current_rgs = T.RegionGroupId.Set.add back_id parent_rgs in
let region_can_end rid =