I am trying to implement IDA* algorithm for n-puzzle problem. i find some difficulty in understanding Pseudo code which explained in IDA *
what is cost(node, succ)? - is that f value?
what is the value that i should pass in cost(node, succ) in
t := search(succ, g + cost(node, succ), bound)
Thanks