summaryrefslogtreecommitdiff
path: root/src/Values.ml
diff options
context:
space:
mode:
authorSon Ho2022-01-05 18:13:06 +0100
committerSon Ho2022-01-05 18:13:06 +0100
commitb191de7f680e4ae43178fc42ccabc91808e189f8 (patch)
treecf6ecb1db633ba8fdc29bc63b68476eddf1593a3 /src/Values.ml
parent8904a6daf444082a26172ad3187f9d61420ab8ec (diff)
Make good progress on eval_local_function_call_symbolic
Diffstat (limited to '')
-rw-r--r--src/Values.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Values.ml b/src/Values.ml
index 0239da5e..001c0347 100644
--- a/src/Values.ml
+++ b/src/Values.ml
@@ -544,7 +544,7 @@ type abs = {
parents : (AbstractionId.set_t[@opaque]); (** The parent abstractions *)
acc_regions : (RegionId.set_t[@opaque]);
(** Union of the regions owned by the (transitive) parent abstractions and
- by the current abstraction *)
+ by the current abstraction. TODO: why do we need those? *)
regions : (RegionId.set_t[@opaque]); (** Regions owned by this abstraction *)
avalues : typed_avalue list; (** The values in this abstraction *)
}