Skip to content

Commit

Permalink
Add eqd to TD3 tracing output
Browse files Browse the repository at this point in the history
  • Loading branch information
sim642 committed Sep 25, 2023
1 parent 16077e3 commit 23a5d83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/solvers/td3.ml
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ module Base =
else
box old eqd
in
if tracing then trace "sol" "Var: %a (wp: %b)\nOld value: %a\nNew value: %a\n" S.Var.pretty_trace x wp S.Dom.pretty old S.Dom.pretty wpd;
if tracing then trace "sol" "Var: %a (wp: %b)\nOld value: %a\nEqd: %a\nNew value: %a\n" S.Var.pretty_trace x wp S.Dom.pretty old S.Dom.pretty eqd S.Dom.pretty wpd;
if cache then (
if tracing then trace "cache" "cache size %d for %a\n" (HM.length l) S.Var.pretty_trace x;
cache_sizes := HM.length l :: !cache_sizes;
Expand Down

0 comments on commit 23a5d83

Please sign in to comment.