-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: prevent negative values from entering calculation in 'calculate_…
…fraction_exposed_and_wetted_soil_fc'
- Loading branch information
1 parent
6a69fa1
commit 76f6dfb
Showing
6 changed files
with
10 additions
and
7 deletions.
There are no files selected for viewing
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# optimization_level 1: DEBUG; optimization_level 2: RELEASE | ||
option('optimization_level', type : 'integer', min : 1, max : 2, value : 1) | ||
option('optimization_level', type : 'integer', min : 1, max : 2, value : 2) | ||
|
||
option('swb_major_version', type : 'string', value : '"2"', description : 'project major version number') | ||
option('swb_minor_version', type : 'string', value : '"3"', description : 'project minor version number') | ||
option('swb_patch_version', type : 'string', value : '"2"', description : 'project patch version number') | ||
option('swb_version', type : 'string', value : 'v2.3.2-rc0', description : 'project version') | ||
option('swb_patch_version', type : 'string', value : '"3"', description : 'project patch version number') | ||
option('swb_version', type : 'string', value : 'v2.3.3-rc0', description : 'project version') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters