Skip to content
Snippets Groups Projects
Commit c456cf41 authored by Ian Bell's avatar Ian Bell
Browse files

Cast back to double

parent 8c9fea32
Branches
No related tags found
No related merge requests found
...@@ -150,7 +150,7 @@ auto with_teqp_and_boost(const Model &model, double T, double rho, const VECTOR ...@@ -150,7 +150,7 @@ auto with_teqp_and_boost(const Model &model, double T, double rho, const VECTOR
calc_output o; calc_output o;
o.Zexact = static_cast<double>(Zexact); o.Zexact = static_cast<double>(Zexact);
o.Zteqp = Zteqp; o.Zteqp = Zteqp;
o.Ar01exact = derL3; o.Ar01exact = static_cast<double>(derL3);
o.Ar01teqp = Ar01teqp; o.Ar01teqp = Ar01teqp;
// Now do the third-order derivative of alphar, as a further test // Now do the third-order derivative of alphar, as a further test
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment