mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-28 06:05:58 -04:00
initialize min temperature as infty, so it strictly decreases
This commit is contained in:
parent
bb9ef684ae
commit
d4cf2b321d
1 changed files with 1 additions and 1 deletions
|
|
@ -32,7 +32,7 @@ namespace openmc {
|
|||
namespace data {
|
||||
std::array<double, 2> energy_min {0.0, 0.0};
|
||||
std::array<double, 2> energy_max {INFTY, INFTY};
|
||||
double temperature_min {0.0};
|
||||
double temperature_min {INFTY};
|
||||
double temperature_max {0.0};
|
||||
std::unordered_map<std::string, int> nuclide_map;
|
||||
std::vector<std::unique_ptr<Nuclide>> nuclides;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue