- fixed: BFSSearch did not mark its start sector as added.

As a result it could be added twice.
This commit is contained in:
Christoph Oelckers 2021-11-16 23:37:31 +01:00
parent 1b3b8ab7cc
commit 2a51e5eca3

View file

@ -26,6 +26,7 @@ public:
startpos = store.Size();
curpos = startpos;
Set(startnode);
store.Push(startnode);
}