Browse Source

Merge branch 'master' into deterministicScheds

tempestpy_adaptions
Tim Quatmann 5 years ago
parent
commit
ac4687b801
  1. 8
      src/storm/storage/geometry/nativepolytopeconversion/QuickHull.cpp

8
src/storm/storage/geometry/nativepolytopeconversion/QuickHull.cpp

@ -128,11 +128,17 @@ namespace storm {
// get one hyperplane that holds all points
const uint_fast64_t dimension = points.front().rows();
EigenVector refPoint = points.front();
EigenVector normal;
if (points.size() == 1) {
normal.resize(dimension);
normal(0) = storm::utility::one<ValueType>();
} else {
EigenMatrix constraints(points.size() - 1, dimension);
for (unsigned row = 1; row < points.size(); ++row) {
constraints.row(row - 1) = points[row] - refPoint;
}
EigenVector normal = constraints.fullPivLu().kernel().col(0);
normal = constraints.fullPivLu().kernel().col(0);
}
// Eigen returns the column vector 0...0 if the kernel is empty (i.e., there is no such hyperplane)
if (normal.isZero()) {

Loading…
Cancel
Save