Fix NodeComparer::operator() to follow strict weak ordering rules

This fixes annoying assertion failures in MSVC builds
This commit is contained in:
Victor Luchits
2017-07-02 22:59:41 +03:00
parent 2f305cc68d
commit e9e311f142
+1 -1
View File
@@ -177,7 +177,7 @@ private:
{
if(rhs->turns > lhs->turns)
return false;
else if(rhs->turns == lhs->turns && rhs->moveRemains < lhs->moveRemains)
else if(rhs->turns == lhs->turns && rhs->moveRemains <= lhs->moveRemains)
return false;
return true;