-
Notifications
You must be signed in to change notification settings - Fork 18
added get and set state to sidl, documentation still to do #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
base: develop
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -115,8 +115,12 @@ grouped by functional category. | |
| :ref:`get_value` Get a copy of values of a given variable. | ||
| :ref:`get_value_ptr` Get a reference to the values of a given variable. | ||
| :ref:`get_value_at_indices` Get variable values at specific locations. | ||
| :ref:`get_state` Get all the variables that together form the state of the model. | ||
| :ref:`get_state_pr` Get a reference to the value of the state. | ||
| :ref:`set_value` Set the values of a given variable. | ||
| :ref:`set_value_at_indices` Set the values of a variable at specific locations. | ||
| :ref:`set_state` Set all the variables that together form the state of the model. | ||
| :ref:`set_state_pr` Set the state by providing a reference. | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Might suggest There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I see that this is defined as |
||
| :ref:`get_grid_rank` Get the number of dimensions of a computational grid. | ||
| :ref:`get_grid_size` Get the total number of elements of a computational grid. | ||
| :ref:`get_grid_type` Get the grid type as a string. | ||
|
|
||
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.
Might suggest
get_state_ptrto be consistent with the other functions that get a reference.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 see that this is defined as
get_state_ptrin bmi-python soget_state_pris a typo?