Skip to content

Commit

Permalink
re-tighten bounds after initial guess problem resolved
Browse files Browse the repository at this point in the history
  • Loading branch information
jonahm-LANL committed Dec 25, 2024
1 parent d6e80ee commit 5f79307
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion singularity-eos/eos/eos_base.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -846,7 +846,7 @@ class EosBase {
// TODO(JMM): A lot hardcoded in here... Hopefully relevent EOS's
// overwrite.
constexpr Real MAXFAC = 1e8;
constexpr Real EPS = std::max(1e-8, 100 * robust::EPS());
constexpr Real EPS = 10 * robust::EPS();
constexpr Real MINR_DEFAULT = 1e-4;
constexpr Real DEFAULT_RHO_GUESS = 4;
using RootFinding1D::findRoot; // more robust but slower. Better default.
Expand Down

0 comments on commit 5f79307

Please sign in to comment.