-
Notifications
You must be signed in to change notification settings - Fork 121
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Order polytope related fixes and improvements #176
Conversation
std::pair<Point, NT> _innerball; | ||
|
||
#ifndef VOLESTIPY // as _A is never normalized in closed form | ||
_innerball = ComputeChebychevBall<NT, Point>(A, b); // use lpsolve library | ||
#ifndef VOLESTIPY |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
VOLESTIPY is always undefined. Plz use only ComputeChebychevBall<NT, Point>(A, b)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@TolisChal is VOLESTIPY needed in the library now?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
now the function returns just ComputeChebychevBall<NT, Point>(A, b)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks! I have a few comments, otherwise OK for merging.
The changes in the PR have been pulled apart from #171 for easy reviewal and better readability.