-
Notifications
You must be signed in to change notification settings - Fork 23
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
4.x Constraint Tolerance Parameter Equivalent #120
Comments
Parameters h_min and h_norm have not yet been transferred to Nomad 4. I increased the priority of this modif in the todo list. |
It is still possible to patch your version to get the equivalent of h_min and h_norm. Computation of H is done in the Eval class. |
Could you provide instructions on how I would go about this? Thank you! |
In what follows, you can replace the NOMAD::Double::getEpsilon() with your value of H_MIN. `bool NOMAD::Eval::isFeasible(NOMAD::ComputeType computeType) const
}` In what follows, you can change how hTemp is computed `NOMAD::Double NOMAD::Eval::computeHStandard() const .... else if (NOMAD::BBOutputType::PB == bbOutputType)
....` |
Thank you for the code. I've taken a look and it looks like I'd have to substitute my own static value before compiling. Unfortunately I need my users to be able to specify this value themselves, so it looks like I need to wait for the h_min parameter to get implemented properly in NOMAD 4. I appreciate you increasing the priority of these two parameters. Thank you! |
Did anything related to this get added in release 4.4? |
Not yet. |
That'll be fine, thank you! |
What are the NOMAD 4.x equivalent parameters to the 3.x parameters "h_min" and "h_norm"? I don't see anything that is roughly the same as these in the 4.x parameter list.
The text was updated successfully, but these errors were encountered: