Closed mauricerad closed 5 years ago
while (hasEdge==true){
selectableIndices.empty()
std::vector <int> selectableIndices;
state s
Warnings originate from state class and have been fixed on Timon's current branch (feature/sAt1). Works and has been tested (see RandomAgent_main.cc).
while (hasEdge==true){
runs endlessly, thenselectableIndices.empty()
is never true. So you might have a bug in your consistency checks.std::vector <int> selectableIndices;
, when the same vector is already contained instate s
?