diff --git a/src/graph/helper.cc b/src/graph/helper.cc index c31e28a7f55b9b2fa0dce8c755aa4f3f0fc1178b..bf40b21acaeb7b03cb0790eca4f1b2024785162e 100644 --- a/src/graph/helper.cc +++ b/src/graph/helper.cc @@ -121,7 +121,7 @@ namespace hpp { static const bool valid = ( (gCase & WithPreGrasp) || (gCase & GraspOnly) || (gCase & NoGrasp) ) && ( (gCase & WithPrePlace) || (gCase & PlaceOnly) || (gCase & NoPlace) ) - && !(gCase == (NoGrasp | NoPlace)); + && !((gCase & NoGrasp) && (gCase & NoPlace)); static const std::size_t nbWaypoints = (pregrasp?1:0) + (intersec?1:0) + (preplace?1:0); static const std::size_t Nnodes = 2 + nbWaypoints;