You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Adds code to construct inputs for the compiled code (#25)
* Tidies up configs for pydantic models
* Moves enums into "utils/enums.py"
* First draft of "inputs.py" code to construct inputs for compiled code
* Renames enums
* Moves definition of dataclasses to "utils/dataclasses.py"
* Tidies up "inputs" module with "make_problem"2" and "make_cells" routines
* Adds offset to the "index" routine in "classList.py"
* Adds "NaNList" class to "tests/utils.py"
* Adds "test_inputs.py", and corrects code in "inputs.py"
* Adjusts tests to fit with pybind example
* Updates code to ensure tests pass
* Renames parameters to match matlab updates
* Converts "inputs.py" to use C++ objects directly.
* Renames "misc.py" as "wrappers.py" and "Calc" enum as "Calculations"
* Adds background actions to the contrast model
* Adds file wrappers to "make"cells"
* Adds additional examples to "test_inputs.py" to improve test coverage"
* Adds code to support recording custom files in "make_cells"
* Updates submodule and tidying up
* Updates requirements
* . . .and "pyproject.toml"
* Fixes pydantic to version 2.6.4
* . . . and "setup.py"
* Sort out version requirements
* Addresses review comments and import statements
* Changes parameters from optional to compulsory in "Layer" and "AbsorptionLayer" models
* Enables optional hydration in layer models
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,6 +16,10 @@ And finally create a separate branch to begin work
16
16
17
17
git checkout -b new-feature
18
18
19
+
If there are updates to the C++ RAT submodule, run the following command to update the local branch
20
+
21
+
git submodule update --remote
22
+
19
23
Once complete submit a [pull request](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request-from-a-fork) via GitHub.
20
24
Ensure to rebase your branch to include the latest changes on your branch and resolve possible merge conflicts.
0 commit comments