-
Notifications
You must be signed in to change notification settings - Fork 249
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
[GeoMechanicsApplication] Add line_search support to solving_strategy_factory #11814
Conversation
…on. Unit and integration test added.
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.
Looks good! Have some comments, mainly minor style-related suggestions, so nothing blocking!
applications/GeoMechanicsApplication/custom_utilities/solving_strategy_factory.hpp
Outdated
Show resolved
Hide resolved
applications/GeoMechanicsApplication/custom_utilities/solving_strategy_factory.hpp
Show resolved
Hide resolved
applications/GeoMechanicsApplication/custom_utilities/solving_strategy_factory.hpp
Show resolved
Hide resolved
applications/GeoMechanicsApplication/custom_utilities/solving_strategy_factory.hpp
Outdated
Show resolved
Hide resolved
applications/GeoMechanicsApplication/custom_utilities/solving_strategy_factory.hpp
Outdated
Show resolved
Hide resolved
applications/GeoMechanicsApplication/custom_utilities/solving_strategy_factory.hpp
Show resolved
Hide resolved
applications/GeoMechanicsApplication/tests/cpp_tests/test_solving_strategy_factory.cpp
Show resolved
Hide resolved
...tions/GeoMechanicsApplication/tests/test_settlement_workflow/test_model_stage4.post.orig.res
Show resolved
Hide resolved
applications/GeoMechanicsApplication/custom_utilities/solving_strategy_factory.hpp
Outdated
Show resolved
Hide resolved
} | ||
|
||
return nullptr; | ||
} | ||
|
||
private: | ||
static Parameters ExtractStrategyParameters(const Parameters &rSolverSettings) | ||
{ | ||
static Parameters ExtractStrategyParameters(const Parameters &rSolverSettings, |
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.
I need a similar function in the criteria factory, I think I'll extract it there into some helper/utility function
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.
Looks good, thanks for incorporating the changes!
📝 Description
Allows line_search solving strategy to be used through the geomechanics c++ interface