Skip to content

Commit

Permalink
Remove E0 from print parameters function
Browse files Browse the repository at this point in the history
  • Loading branch information
jhp-lanl committed May 11, 2024
1 parent 571fe88 commit c519d29
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions singularity-eos/eos/eos_davis.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -286,8 +286,8 @@ class DavisProducts : public EosBase<DavisProducts> {
static inline unsigned long max_scratch_size(unsigned int nelements) { return 0; }
PORTABLE_INLINE_FUNCTION void PrintParams() const {
static constexpr char s1[]{"DavisProducts Params: "};
printf("%sa:%e b:%e k:%e\nn:%e vc:%e pc:%e\nCv:%e E0:%e\n", s1, _a, _b, _k, _n, _vc,
_pc, _Cv);
printf("%sa:%e b:%e k:%e\nn:%e vc:%e pc:%e\nCv:%e \n", s1, _a, _b, _k, _n, _vc, _pc,
_Cv);
}
inline void Finalize() {}
static std::string EosType() { return std::string("DavisProducts"); }
Expand Down

0 comments on commit c519d29

Please sign in to comment.