-
Notifications
You must be signed in to change notification settings - Fork 112
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
Adds support for the RCMASTS keyword #4272
base: master
Are you sure you want to change the base?
Conversation
jenkins build this opm-simulators=5620 please |
const std::map<std::string, Slave>& slaves() const { | ||
return this->m_slaves; | ||
} | ||
std::map<std::string, Slave>& slaves() { |
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.
The change here is that these methods was sorted alphabetically.
return this->m_master_groups; | ||
} | ||
|
||
double masterMinTimeStep() const { |
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.
The following two methods were added to access the minimum timestep
// ---------------------------------------------- | ||
// Testing SLAVES keyword (sorted alphabetically) | ||
// ---------------------------------------------- | ||
BOOST_AUTO_TEST_SUITE(SlaveTests) |
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.
Added sub test suites to structure this file and make it more readable
|
||
BOOST_AUTO_TEST_CASE(SLAVES_OK) { | ||
BOOST_AUTO_TEST_CASE(FAIL_NEGATIVE_NUMPROCS) { |
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.
Also sorted the functions alphabetically
jenkins build this please |
Adds support for the RCMASTS keyword.
jenkins build this please |
Adds support for the
RCMASTS
keyword in reservoir coupling.