You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
From my understanding, we currently run into problems if we want to log e.g., a nested local search. A nested heuristic requires a new Scope, because it may use the same custom State as the high-level heuristic, for example Iteration. But the current implementation of State::with_substate discards the substate after executing the given function, including the Log. Correct me if I'm wrong, @luleyleo.
A way to aggregate nested Log's would therefore be appropriate.
The text was updated successfully, but these errors were encountered:
From my understanding, we currently run into problems if we want to log e.g., a nested local search. A nested heuristic requires a new
Scope
, because it may use the same custom State as the high-level heuristic, for exampleIteration
. But the current implementation ofState::with_substate
discards the substate after executing the given function, including theLog
. Correct me if I'm wrong, @luleyleo.A way to aggregate nested
Log
's would therefore be appropriate.The text was updated successfully, but these errors were encountered: