Skip to content

Commit 8cd2302

Browse files
authored
Merge branch 'development' into metal_chemistry
2 parents b5e2a6d + b45e502 commit 8cd2302

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

integration/integrator_setup_strang.H

+2-2
Original file line numberDiff line numberDiff line change
@@ -210,14 +210,14 @@ void integrator_cleanup (IntegratorT& int_state, BurnT& state,
210210
std::cout << "temp start = " << std::setprecision(16) << state_save.T_in << std::endl;
211211
std::cout << "xn start = ";
212212
for (const double X : state_save.xn_in) {
213-
std::cout << std::setprecision(16) << X << " ";
213+
std::cout << std::scientific << std::setprecision(16) << X << " ";
214214
}
215215
std::cout << std::endl;
216216
std::cout << "dens current = " << std::setprecision(16) << state.rho << std::endl;
217217
std::cout << "temp current = " << std::setprecision(16) << state.T << std::endl;
218218
std::cout << "xn current = ";
219219
for (const double X : state.xn) {
220-
std::cout << std::setprecision(16) << X << " ";
220+
std::cout << std::scientific << std::setprecision(16) << X << " ";
221221
}
222222
std::cout << std::endl;
223223
std::cout << "energy generated = " << state.e << std::endl;

0 commit comments

Comments
 (0)