Skip to content

Commit

Permalink
Merge 6ee5ab6 into bf9932a
Browse files Browse the repository at this point in the history
  • Loading branch information
Bai-Li-NOAA authored Aug 22, 2023
2 parents bf9932a + 6ee5ab6 commit 749155d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ class Parameter {
* @brief Constructor for initializing Parameter.
* @details Inputs include value, min, max, estimated.
*/
Parameter(double value, double min, double max, bool estimated)
: value(value), min(min), max(max), estimated(estimated) {}
Parameter(double value_m, double min_m, double max_m, bool estimated_m)
: value(value_m), min(min_m), max(max_m), estimated(estimated_m) {}

/**
* @brief Constructor for initializing Parameter.
Expand Down

0 comments on commit 749155d

Please sign in to comment.