compatible heuristics (h) is the one that has below condition:
h(n) <= c(n,a,n') + h(n')
****************************************************
admissible heuristics (h) is the one that has below condition:
0 <= h(n) <= h*(n)
h*(n) is the real distance from node n
to the goal
If a heuristic is compatible, how to prove it is admissible ?
Thanks a lot.