Look at these 2 outcomes
The source is 6,6 and destination is 10,10
F G H
7 7 1 1735 1420 315 << H should be higher
6 5 7 1907 708 1199
The G cost is okay, the one that taking turns (direction 7) should cost less thana closer node with wrong direction.
But when you look at the H cost, as the opened node is 7,7, the true heuristic will be less
than 6,5 because it will take an easier path no matter what the direction is.
But I still prefer 6,5 to 7,7... how do I increase the true distance of 7,7.
So that 6,5 should be chosen instead?
Thanks
Jack