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
If the first bfs is not instant, this wastes significant time. It would be nice to have searchSettings.stopOnGoal() and instruct the search to continue even if it hits a goal-matching state (while still logging the goal-matching state). This will require some re-architecture of SearchResults and BaseJUnitTest as well as Search.java. Additionally, trace minimization should probably be done on the main thread instead of worker threads.
The text was updated successfully, but these errors were encountered:
Throughout the search tests now, we have the pattern:
If the first
bfs
is not instant, this wastes significant time. It would be nice to havesearchSettings.stopOnGoal()
and instruct the search to continue even if it hits a goal-matching state (while still logging the goal-matching state). This will require some re-architecture ofSearchResults
andBaseJUnitTest
as well asSearch.java
. Additionally, trace minimization should probably be done on the main thread instead of worker threads.The text was updated successfully, but these errors were encountered: