1
0
Fork 0
mirror of https://github.com/cosmo-sims/monofonIC.git synced 2024-09-19 17:03:45 +02:00

typo (double;)

This commit is contained in:
Michael Buehlmann 2020-08-14 11:50:51 -05:00
parent f098c17bb7
commit c56a9b013a

View file

@ -66,7 +66,7 @@ public:
real_t astart = 1.0 / (1.0 + cf_.get_value<double>("setup", "zstart"));
lunit_ = cf_.get_value<double>("setup", "BoxLength");
vunit_ = lunit_ / std::sqrt(astart);
munit_ = rhoc * std::pow(cf_.get_value<double>("setup", "BoxLength"), 3);;
munit_ = rhoc * std::pow(cf_.get_value<double>("setup", "BoxLength"), 3);
blongids_ = cf_.get_value_safe<bool>("output", "UseLongids", false);
}