The current output of the planning problem is difficult to interpret for someone who does not know what to look for. For example, the current solution provided is something like the following:
[(<PyCall.jlwrap flip_row(r1)>, 1), (<PyCall.jlwrap flip_row(r3)>, 1), (<PyCall.jlwrap flip_column(c2)>, 1)]
Computation time: 18.53
It would be more preferable to have the output in a much simpler fashion, something like :
flip_row(r1), 1
flip_row(r3), 1
flip_row(c2), 1
I think this might be easily achieved by storing the output and trimming off the unnecessary bits, but we'll see about that during implementation.
The current output of the planning problem is difficult to interpret for someone who does not know what to look for. For example, the current solution provided is something like the following:
It would be more preferable to have the output in a much simpler fashion, something like :
I think this might be easily achieved by storing the output and trimming off the unnecessary bits, but we'll see about that during implementation.