-
Notifications
You must be signed in to change notification settings - Fork 19
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
increase the default max_iter in projection_iterhull #30
Comments
Also mentioned in this tulip issue. |
For now, I support exposing the Having said that, this will be a keyword argument, so the choice of default value still remains. Is there a definite sense of what values are large and small, and what should suffice? (the current default is 10**3). Another approach (orthogonal to the above) is to add a global constant, which is used as the default keyword argument value (with Even though I do not support global constants much, I think that configuration parameters of solvers are a quite standard use case, and explicit (which is good). A somewhat similar approach is used in |
Regarding what value is large enough: for the If we want |
What changes would need to be made to the random number generator? |
I meant fixing the seed of the random number generator (see #13). |
Polytope
projection
function does not reveal themax_iter
parameter ofprojection_iterhull
. I found in playing some problems in tulip withopen_loop
discretization thatprojection_iterhull
is used due to being efficient for the polytope and projection dimensions considered in such cases however the random initialization fails due tomax_iter
being small. I often get the error message "Exception: iterative_hull: could not find starting simplex". I think settingmax_iter
to a larger value (50000?) would be useful. This should not affect the performance of already working examples. Just wanted to check if anyone has any concerns on this before implementing it.The text was updated successfully, but these errors were encountered: