Skip to content

Commit

Permalink
specify cyclus:: namespace for cy_large_int
Browse files Browse the repository at this point in the history
  • Loading branch information
bennibbelink committed Jul 21, 2024
1 parent 1057949 commit 7bd93ae
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/storage.h
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ class Storage
"active_buying_frequency_type. Must be greater than or equal to 1 (i.e., agent "\
"cannot always be dormant)",\
"uitype": "range", \
"range": [1, "cy_large_int"], \
"range": [1, "cyclus::cy_large_int"], \
"uilabel": "Active Buying Frequency Value"}
int active_buying_val;

Expand All @@ -257,7 +257,7 @@ class Storage
"Uniform and optional for Normal active_buying_frequency_type. Must be greater than "\
"or equal to 1 ",\
"uitype": "range", \
"range": [1, "cy_large_int"], \
"range": [1, "cyclus::cy_large_int"], \
"uilabel": "Active Buying Frequency Minimum"}
int active_buying_min;

Expand All @@ -266,7 +266,7 @@ class Storage
"doc": "The maximum length in time steps of the active buying period. Required for "\
"Uniform active_buying_frequency_type, optional for Normal. Must be greater than or equal to active_buying_min ",\
"uitype": "range", \
"range": [1, "cy_large_int"], \
"range": [1, "cyclus::cy_large_int"], \
"uilabel": "Active Buying Frequency Maximum"}
int active_buying_max;

Expand Down Expand Up @@ -304,7 +304,7 @@ class Storage
"doc": "The length in time steps of the dormant buying period. Required for fixed "\
"dormant_buying_frequency_type. Default is -1, agent has no dormant period and stays active.",\
"uitype": "range", \
"range": [-1, "cy_large_int"], \
"range": [-1, "cyclus::cy_large_int"], \
"uilabel": "Dormant Buying Frequency Value"}
int dormant_buying_val;

Expand All @@ -313,7 +313,7 @@ class Storage
"doc": "The minimum length in time steps of the dormant buying period. Required for Uniform and optional for "\
"Normal dormant_buying_frequency_type.",\
"uitype": "range", \
"range": [0, "cy_large_int"], \
"range": [0, "cyclus::cy_large_int"], \
"uilabel": "Dormant Buying Frequency Minimum"}
int dormant_buying_min;

Expand All @@ -322,7 +322,7 @@ class Storage
"doc": "The maximum length in time steps of the dormant buying period. Required for "\
"Uniform dormant_buying_frequency_type, optional for Normal. Must be greater than or equal to dormant_buying_min ",\
"uitype": "range", \
"range": [0, "cy_large_int"], \
"range": [0, "cyclus::cy_large_int"], \
"uilabel": "Dormant Buying Frequency Maximum"}
int dormant_buying_max;

Expand Down

0 comments on commit 7bd93ae

Please sign in to comment.