Open ssardina opened 3 years ago
I'll have to look into it as your fix makes more sense than how it was before. On the other hand, it worked well before. I'll have a look after reviewing deadlines (IJCAI and SoCS).
OK. Yes I was confused. Presumably variable visitednodes
contains the address of visitednodes[0]
, the first element of the array. So it would be equivalent to &visitednodes[0]
visitednodes
is of int[]
which is exactly the type of the argument in the function.
I would have imagine that &visitednodes
is NOT the same value as visitednodes
@lchrpa , we have this function:
and we call it like this:
I have replaced it with:
Agree? Why did it work well before?