Browse Source

PolytopeTree: Fixed application of convex union.

tempestpy_adaptions
Tim Quatmann 6 years ago
parent
commit
df28331465
  1. 2
      src/storm/storage/geometry/PolytopeTree.h

2
src/storm/storage/geometry/PolytopeTree.h

@ -55,7 +55,7 @@ namespace storm {
if (c.polytope != nullptr) {
newChildren.push_back(c);
if (newPolytope) {
newPolytope->convexUnion(c.polytope);
newPolytope = newPolytope->convexUnion(c.polytope);
} else {
newPolytope = c.polytope;
}

Loading…
Cancel
Save