diff --git a/src/plugins/e-acsl/interval_system.ml b/src/plugins/e-acsl/interval_system.ml index fe18fccc670193f9352c9668e10d01bd3676e20b..ca1b35a69e283e918c78709bcb7ec3dc0e5b5a72 100644 --- a/src/plugins/e-acsl/interval_system.ml +++ b/src/plugins/e-acsl/interval_system.ml @@ -124,10 +124,10 @@ let build ~infer t = let args_lty = List.map2 (fun lv arg -> try - (* speed-up convergence *) + (* speed-up convergence; because of this approximation, no need to + associate [i] to [lv] in [Interval.Env]: the very same interval + will be computed anyway. *) let i = interv_of_typ_containing_interv (infer arg) in - (* TODO: *) -(* Env.add lv i;*) Ctype (TInt(ikind_of_interv i, [])) with | Cil.Not_representable -> Linteger @@ -151,7 +151,6 @@ let build ~infer t = let ieqs = Ivar.Map.add ivar iexp ieqs in ieqs, ivars in -(* List.iter (fun lv -> Env.remove lv) li.l_profile;*) Ivar ivar, ieqs, ivars end else (try Iconst(infer t), ieqs, ivars