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
When a Search Result is printed it displays a list of actions.
In version v1.0.0-rc1 the list of actions could be read left to right. Now in v1.0.0-rc2 the list needs to be read right to left. I believe that the actions should appear in the list in sequence from left to right.
// To print a search result..
System.out.println( Hipster.createAStar(problem).search(predicate) );
For example, below is a completed Hidato board. It starts at 1, then moves to 2. The action that describes this step is MOVE_UP.
Below is the printed search results from version rc1 and rc2. Observe that the first action of MOVE_UP now appears at the end of the action list in the version rc2 output. And that the action list is now in reverse order.
rc1 output - Action list in correct order, left to right
When a Search Result is printed it displays a list of actions.
In version v1.0.0-rc1 the list of actions could be read left to right. Now in v1.0.0-rc2 the list needs to be read right to left. I believe that the actions should appear in the list in sequence from left to right.
For example, below is a completed Hidato board. It starts at 1, then moves to 2. The action that describes this step is MOVE_UP.
Below is the printed search results from version rc1 and rc2. Observe that the first action of MOVE_UP now appears at the end of the action list in the version rc2 output. And that the action list is now in reverse order.
rc1 output - Action list in correct order, left to right
rc2 output - Action list in reverse order, right to left
I believe that the actions should appear in sequence from left to right as in rc1.
Best regards,
Gareth
The text was updated successfully, but these errors were encountered: