added run_torque and EXPECT_TORQUES

This commit is contained in:
alphataubio
2024-08-04 22:40:36 -04:00
parent c2e192e734
commit af203f7fc7
6 changed files with 51 additions and 0 deletions

View File

@ -70,6 +70,7 @@ public:
std::vector<coord_t> restart_pos;
std::vector<coord_t> run_vel;
std::vector<coord_t> restart_vel;
std::vector<coord_t> run_torque;
TestConfig() :
lammps_version(""), date_generated(""), basename(""), epsilon(1.0e-14), input_file(""),
@ -94,6 +95,7 @@ public:
restart_pos.clear();
run_vel.clear();
restart_vel.clear();
run_torque.clear();
global_vector.clear();
}
TestConfig(const TestConfig &) = delete;