Merge remote-tracking branch 'origin/develop' into kokkos_unittests

This commit is contained in:
Richard Berger
2022-02-07 13:04:59 -05:00
136 changed files with 3769 additions and 1382 deletions

View File

@ -204,8 +204,8 @@ void generate_yaml_file(const char *outfile, const TestConfig &config)
if (fix->thermo_virial) {
auto stress = fix->virial;
block = fmt::format("{:23.16e} {:23.16e} {:23.16e} "
"{:23.16e} {:23.16e} {:23.16e}",
stress[0], stress[1], stress[2], stress[3], stress[4], stress[5]);
"{:23.16e} {:23.16e} {:23.16e}",
stress[0], stress[1], stress[2], stress[3], stress[4], stress[5]);
writer.emit_block("run_stress", block);
}