Skip to content

Commit

Permalink
Update volesti source code commit hash ef43e0d18718a158a784b2d5f229de…
Browse files Browse the repository at this point in the history
…cfa4fc3b4d (#28)
  • Loading branch information
vfisikop committed Oct 10, 2024
1 parent 15b7da0 commit 6d73fb5
Show file tree
Hide file tree
Showing 40 changed files with 2,123 additions and 392 deletions.
6 changes: 6 additions & 0 deletions src/volesti/include/convex_bodies/ballintersectconvex.h
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,12 @@ class BallIntersectPolytope {
return P.get_vec();
}

bool is_normalized () {
return true;
}

void normalize() {}

int is_in(PointType const& p) const
{
if (B.is_in(p)==-1)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -261,6 +261,12 @@ class CorrelationSpectrahedron : public Spectrahedron<Point>{
MT get_mat() const {
return MT::Identity(this->d, this->d);
}

bool is_normalized () {
return true;
}

void normalize() {}
};

#endif //VOLESTI_CONVEX_BODIES_CORRELATION_MATRICES_VOLESTI_CORRELATION_SPECTRAHEDRON_HPP
Loading

0 comments on commit 6d73fb5

Please sign in to comment.