apply clang-format settings to the c++ sources in the unittest tree
This commit is contained in:
@ -13,32 +13,32 @@
|
||||
|
||||
// unit tests for angle styles intended for molecular systems
|
||||
|
||||
#include "yaml_reader.h"
|
||||
#include "yaml_writer.h"
|
||||
#include "error_stats.h"
|
||||
#include "test_config.h"
|
||||
#include "test_config_reader.h"
|
||||
#include "test_main.h"
|
||||
#include "yaml_reader.h"
|
||||
#include "yaml_writer.h"
|
||||
|
||||
#include "gtest/gtest.h"
|
||||
#include "gmock/gmock.h"
|
||||
#include "gtest/gtest.h"
|
||||
|
||||
#include "lammps.h"
|
||||
#include "angle.h"
|
||||
#include "atom.h"
|
||||
#include "modify.h"
|
||||
#include "compute.h"
|
||||
#include "force.h"
|
||||
#include "angle.h"
|
||||
#include "info.h"
|
||||
#include "input.h"
|
||||
#include "lammps.h"
|
||||
#include "modify.h"
|
||||
#include "universe.h"
|
||||
|
||||
#include <mpi.h>
|
||||
#include <cstdio>
|
||||
#include <cstring>
|
||||
#include <cstdlib>
|
||||
#include <cctype>
|
||||
#include <cstdio>
|
||||
#include <cstdlib>
|
||||
#include <cstring>
|
||||
#include <ctime>
|
||||
#include <mpi.h>
|
||||
|
||||
#include <iostream>
|
||||
#include <map>
|
||||
@ -46,12 +46,13 @@
|
||||
#include <utility>
|
||||
#include <vector>
|
||||
|
||||
using ::testing::StartsWith;
|
||||
using ::testing::HasSubstr;
|
||||
using ::testing::StartsWith;
|
||||
|
||||
using namespace LAMMPS_NS;
|
||||
|
||||
static void delete_file(const std::string & filename) {
|
||||
static void delete_file(const std::string &filename)
|
||||
{
|
||||
remove(filename.c_str());
|
||||
};
|
||||
|
||||
@ -63,9 +64,7 @@ void cleanup_lammps(LAMMPS *lmp, const TestConfig &cfg)
|
||||
delete lmp;
|
||||
}
|
||||
|
||||
LAMMPS *init_lammps(int argc, char **argv,
|
||||
const TestConfig &cfg,
|
||||
const bool newton=true)
|
||||
LAMMPS *init_lammps(int argc, char **argv, const TestConfig &cfg, const bool newton = true)
|
||||
{
|
||||
LAMMPS *lmp;
|
||||
|
||||
@ -74,7 +73,7 @@ LAMMPS *init_lammps(int argc, char **argv,
|
||||
// check if prerequisite styles are available
|
||||
Info *info = new Info(lmp);
|
||||
int nfail = 0;
|
||||
for (auto& prerequisite : cfg.prerequisites) {
|
||||
for (auto &prerequisite : cfg.prerequisites) {
|
||||
std::string style = prerequisite.second;
|
||||
|
||||
// this is a test for angle styles, so if the suffixed
|
||||
@ -86,19 +85,19 @@ LAMMPS *init_lammps(int argc, char **argv,
|
||||
}
|
||||
}
|
||||
|
||||
if (!info->has_style(prerequisite.first,style)) ++nfail;
|
||||
if (!info->has_style(prerequisite.first, style)) ++nfail;
|
||||
}
|
||||
if (nfail > 0) {
|
||||
delete info;
|
||||
cleanup_lammps(lmp,cfg);
|
||||
cleanup_lammps(lmp, cfg);
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
// utility lambdas to improve readability
|
||||
auto command = [&](const std::string & line) {
|
||||
auto command = [&](const std::string &line) {
|
||||
lmp->input->one(line.c_str());
|
||||
};
|
||||
auto parse_input_script = [&](const std::string & filename) {
|
||||
auto parse_input_script = [&](const std::string &filename) {
|
||||
lmp->input->file(filename.c_str());
|
||||
};
|
||||
|
||||
@ -110,7 +109,7 @@ LAMMPS *init_lammps(int argc, char **argv,
|
||||
|
||||
command("variable input_dir index " + INPUT_FOLDER);
|
||||
|
||||
for (auto& pre_command : cfg.pre_commands) {
|
||||
for (auto &pre_command : cfg.pre_commands) {
|
||||
command(pre_command);
|
||||
}
|
||||
|
||||
@ -119,11 +118,11 @@ LAMMPS *init_lammps(int argc, char **argv,
|
||||
|
||||
command("angle_style " + cfg.angle_style);
|
||||
|
||||
for (auto& angle_coeff : cfg.angle_coeff) {
|
||||
for (auto &angle_coeff : cfg.angle_coeff) {
|
||||
command("angle_coeff " + angle_coeff);
|
||||
}
|
||||
|
||||
for (auto& post_command : cfg.post_commands) {
|
||||
for (auto &post_command : cfg.post_commands) {
|
||||
command(post_command);
|
||||
}
|
||||
|
||||
@ -138,7 +137,7 @@ LAMMPS *init_lammps(int argc, char **argv,
|
||||
void run_lammps(LAMMPS *lmp)
|
||||
{
|
||||
// utility lambda to improve readability
|
||||
auto command = [&](const std::string & line) {
|
||||
auto command = [&](const std::string &line) {
|
||||
lmp->input->one(line.c_str());
|
||||
};
|
||||
|
||||
@ -153,7 +152,7 @@ void run_lammps(LAMMPS *lmp)
|
||||
void restart_lammps(LAMMPS *lmp, const TestConfig &cfg)
|
||||
{
|
||||
// utility lambda to improve readability
|
||||
auto command = [&](const std::string & line) {
|
||||
auto command = [&](const std::string &line) {
|
||||
lmp->input->one(line.c_str());
|
||||
};
|
||||
|
||||
@ -164,14 +163,13 @@ void restart_lammps(LAMMPS *lmp, const TestConfig &cfg)
|
||||
command("angle_style " + cfg.angle_style);
|
||||
}
|
||||
|
||||
if ((cfg.angle_style.substr(0,6) == "hybrid")
|
||||
|| !lmp->force->angle->writedata) {
|
||||
for (auto& angle_coeff : cfg.angle_coeff) {
|
||||
if ((cfg.angle_style.substr(0, 6) == "hybrid") || !lmp->force->angle->writedata) {
|
||||
for (auto &angle_coeff : cfg.angle_coeff) {
|
||||
command("angle_coeff " + angle_coeff);
|
||||
}
|
||||
}
|
||||
|
||||
for (auto& post_command : cfg.post_commands) {
|
||||
for (auto &post_command : cfg.post_commands) {
|
||||
command(post_command);
|
||||
}
|
||||
|
||||
@ -181,10 +179,10 @@ void restart_lammps(LAMMPS *lmp, const TestConfig &cfg)
|
||||
void data_lammps(LAMMPS *lmp, const TestConfig &cfg)
|
||||
{
|
||||
// utility lambdas to improve readability
|
||||
auto command = [&](const std::string & line) {
|
||||
auto command = [&](const std::string &line) {
|
||||
lmp->input->one(line.c_str());
|
||||
};
|
||||
auto parse_input_script = [&](const std::string & filename) {
|
||||
auto parse_input_script = [&](const std::string &filename) {
|
||||
lmp->input->file(filename.c_str());
|
||||
};
|
||||
|
||||
@ -194,7 +192,7 @@ void data_lammps(LAMMPS *lmp, const TestConfig &cfg)
|
||||
command("variable newton_bond delete");
|
||||
command("variable newton_bond index on");
|
||||
|
||||
for (auto& pre_command : cfg.pre_commands) {
|
||||
for (auto &pre_command : cfg.pre_commands) {
|
||||
command(pre_command);
|
||||
}
|
||||
|
||||
@ -204,10 +202,10 @@ void data_lammps(LAMMPS *lmp, const TestConfig &cfg)
|
||||
std::string input_file = INPUT_FOLDER + PATH_SEP + cfg.input_file;
|
||||
parse_input_script(input_file);
|
||||
|
||||
for (auto& angle_coeff : cfg.angle_coeff) {
|
||||
for (auto &angle_coeff : cfg.angle_coeff) {
|
||||
command("angle_coeff " + angle_coeff);
|
||||
}
|
||||
for (auto& post_command : cfg.post_commands) {
|
||||
for (auto &post_command : cfg.post_commands) {
|
||||
command(post_command);
|
||||
}
|
||||
command("run 0 post no");
|
||||
@ -218,16 +216,15 @@ void data_lammps(LAMMPS *lmp, const TestConfig &cfg)
|
||||
void generate_yaml_file(const char *outfile, const TestConfig &config)
|
||||
{
|
||||
// initialize system geometry
|
||||
const char *args[] = {"AngleStyle", "-log", "none", "-echo", "screen", "-nocite" };
|
||||
const char *args[] = {"AngleStyle", "-log", "none", "-echo", "screen", "-nocite"};
|
||||
char **argv = (char **)args;
|
||||
int argc = sizeof(args)/sizeof(char *);
|
||||
LAMMPS *lmp = init_lammps(argc,argv,config);
|
||||
int argc = sizeof(args) / sizeof(char *);
|
||||
LAMMPS *lmp = init_lammps(argc, argv, config);
|
||||
if (!lmp) {
|
||||
std::cerr << "One or more prerequisite styles are not available "
|
||||
"in this LAMMPS configuration:\n";
|
||||
for (auto& prerequisite : config.prerequisites) {
|
||||
std::cerr << prerequisite.first << "_style "
|
||||
<< prerequisite.second << "\n";
|
||||
"in this LAMMPS configuration:\n";
|
||||
for (auto &prerequisite : config.prerequisites) {
|
||||
std::cerr << prerequisite.first << "_style " << prerequisite.second << "\n";
|
||||
}
|
||||
return;
|
||||
}
|
||||
@ -245,7 +242,7 @@ void generate_yaml_file(const char *outfile, const TestConfig &config)
|
||||
// date_generated
|
||||
std::time_t now = time(NULL);
|
||||
block = ctime(&now);
|
||||
block = block.substr(0,block.find("\n")-1);
|
||||
block = block.substr(0, block.find("\n") - 1);
|
||||
writer.emit("date_generated", block);
|
||||
|
||||
// epsilon
|
||||
@ -253,21 +250,21 @@ void generate_yaml_file(const char *outfile, const TestConfig &config)
|
||||
|
||||
// prerequisites
|
||||
block.clear();
|
||||
for (auto& prerequisite : config.prerequisites) {
|
||||
for (auto &prerequisite : config.prerequisites) {
|
||||
block += prerequisite.first + " " + prerequisite.second + "\n";
|
||||
}
|
||||
writer.emit_block("prerequisites", block);
|
||||
|
||||
// pre_commands
|
||||
block.clear();
|
||||
for (auto& command : config.pre_commands) {
|
||||
for (auto &command : config.pre_commands) {
|
||||
block += command + "\n";
|
||||
}
|
||||
writer.emit_block("pre_commands", block);
|
||||
|
||||
// post_commands
|
||||
block.clear();
|
||||
for (auto& command : config.post_commands) {
|
||||
for (auto &command : config.post_commands) {
|
||||
block += command + "\n";
|
||||
}
|
||||
writer.emit_block("post_commands", block);
|
||||
@ -280,7 +277,7 @@ void generate_yaml_file(const char *outfile, const TestConfig &config)
|
||||
|
||||
// angle_coeff
|
||||
block.clear();
|
||||
for (auto& angle_coeff : config.angle_coeff) {
|
||||
for (auto &angle_coeff : config.angle_coeff) {
|
||||
block += angle_coeff + "\n";
|
||||
}
|
||||
writer.emit_block("angle_coeff", block);
|
||||
@ -288,15 +285,15 @@ void generate_yaml_file(const char *outfile, const TestConfig &config)
|
||||
// equilibrium angle
|
||||
std::stringstream eqstr;
|
||||
eqstr << lmp->atom->nangletypes;
|
||||
for (int i=0; i < lmp->atom->nangletypes; ++i) {
|
||||
eqstr << " " << lmp->force->angle->equilibrium_angle(i+1);
|
||||
for (int i = 0; i < lmp->atom->nangletypes; ++i) {
|
||||
eqstr << " " << lmp->force->angle->equilibrium_angle(i + 1);
|
||||
}
|
||||
writer.emit("equilibrium", eqstr.str());
|
||||
|
||||
// extract
|
||||
block.clear();
|
||||
std::stringstream outstr;
|
||||
for (auto& data : config.extract) {
|
||||
for (auto &data : config.extract) {
|
||||
outstr << data.first << " " << data.second << std::endl;
|
||||
}
|
||||
writer.emit_block("extract", outstr.str());
|
||||
@ -309,17 +306,17 @@ void generate_yaml_file(const char *outfile, const TestConfig &config)
|
||||
|
||||
// init_stress
|
||||
double *stress = lmp->force->angle->virial;
|
||||
snprintf(buf,bufsize,"% 23.16e % 23.16e % 23.16e % 23.16e % 23.16e % 23.16e",
|
||||
stress[0],stress[1],stress[2],stress[3],stress[4],stress[5]);
|
||||
snprintf(buf, bufsize, "% 23.16e % 23.16e % 23.16e % 23.16e % 23.16e % 23.16e", stress[0],
|
||||
stress[1], stress[2], stress[3], stress[4], stress[5]);
|
||||
writer.emit_block("init_stress", buf);
|
||||
|
||||
// init_forces
|
||||
block.clear();
|
||||
double **f = lmp->atom->f;
|
||||
tagint *tag = lmp->atom->tag;
|
||||
for (int i=0; i < natoms; ++i) {
|
||||
snprintf(buf,bufsize,"% 3d % 23.16e % 23.16e % 23.16e\n",
|
||||
(int)tag[i], f[i][0], f[i][1], f[i][2]);
|
||||
for (int i = 0; i < natoms; ++i) {
|
||||
snprintf(buf, bufsize, "% 3d % 23.16e % 23.16e % 23.16e\n", (int)tag[i], f[i][0], f[i][1],
|
||||
f[i][2]);
|
||||
block += buf;
|
||||
}
|
||||
writer.emit_block("init_forces", block);
|
||||
@ -332,40 +329,40 @@ void generate_yaml_file(const char *outfile, const TestConfig &config)
|
||||
|
||||
// run_stress
|
||||
stress = lmp->force->angle->virial;
|
||||
snprintf(buf,bufsize,"% 23.16e % 23.16e % 23.16e % 23.16e % 23.16e % 23.16e",
|
||||
stress[0],stress[1],stress[2],stress[3],stress[4],stress[5]);
|
||||
snprintf(buf, bufsize, "% 23.16e % 23.16e % 23.16e % 23.16e % 23.16e % 23.16e", stress[0],
|
||||
stress[1], stress[2], stress[3], stress[4], stress[5]);
|
||||
writer.emit_block("run_stress", buf);
|
||||
|
||||
block.clear();
|
||||
f = lmp->atom->f;
|
||||
tag = lmp->atom->tag;
|
||||
for (int i=0; i < natoms; ++i) {
|
||||
snprintf(buf,bufsize,"% 3d % 23.16e % 23.16e % 23.16e\n",
|
||||
(int)tag[i], f[i][0], f[i][1], f[i][2]);
|
||||
for (int i = 0; i < natoms; ++i) {
|
||||
snprintf(buf, bufsize, "% 3d % 23.16e % 23.16e % 23.16e\n", (int)tag[i], f[i][0], f[i][1],
|
||||
f[i][2]);
|
||||
block += buf;
|
||||
}
|
||||
writer.emit_block("run_forces", block);
|
||||
|
||||
cleanup_lammps(lmp,config);
|
||||
cleanup_lammps(lmp, config);
|
||||
return;
|
||||
}
|
||||
|
||||
TEST(AngleStyle, plain) {
|
||||
const char *args[] = {"AngleStyle", "-log", "none", "-echo", "screen", "-nocite" };
|
||||
TEST(AngleStyle, plain)
|
||||
{
|
||||
const char *args[] = {"AngleStyle", "-log", "none", "-echo", "screen", "-nocite"};
|
||||
char **argv = (char **)args;
|
||||
int argc = sizeof(args)/sizeof(char *);
|
||||
int argc = sizeof(args) / sizeof(char *);
|
||||
|
||||
::testing::internal::CaptureStdout();
|
||||
LAMMPS *lmp = init_lammps(argc,argv,test_config,true);
|
||||
LAMMPS *lmp = init_lammps(argc, argv, test_config, true);
|
||||
std::string output = ::testing::internal::GetCapturedStdout();
|
||||
if (verbose) std::cout << output;
|
||||
|
||||
if (!lmp) {
|
||||
std::cerr << "One or more prerequisite styles are not available "
|
||||
"in this LAMMPS configuration:\n";
|
||||
for (auto& prerequisite : test_config.prerequisites) {
|
||||
std::cerr << prerequisite.first << "_style "
|
||||
<< prerequisite.second << "\n";
|
||||
"in this LAMMPS configuration:\n";
|
||||
for (auto &prerequisite : test_config.prerequisites) {
|
||||
std::cerr << prerequisite.first << "_style " << prerequisite.second << "\n";
|
||||
}
|
||||
GTEST_SKIP();
|
||||
}
|
||||
@ -375,22 +372,21 @@ TEST(AngleStyle, plain) {
|
||||
|
||||
// abort if running in parallel and not all atoms are local
|
||||
const int nlocal = lmp->atom->nlocal;
|
||||
ASSERT_EQ(lmp->atom->natoms,nlocal);
|
||||
ASSERT_EQ(lmp->atom->natoms, nlocal);
|
||||
|
||||
double epsilon = test_config.epsilon;
|
||||
double **f=lmp->atom->f;
|
||||
tagint *tag=lmp->atom->tag;
|
||||
double **f = lmp->atom->f;
|
||||
tagint *tag = lmp->atom->tag;
|
||||
ErrorStats stats;
|
||||
stats.reset();
|
||||
const std::vector<coord_t> &f_ref = test_config.init_forces;
|
||||
ASSERT_EQ(nlocal+1,f_ref.size());
|
||||
for (int i=0; i < nlocal; ++i) {
|
||||
ASSERT_EQ(nlocal + 1, f_ref.size());
|
||||
for (int i = 0; i < nlocal; ++i) {
|
||||
EXPECT_FP_LE_WITH_EPS(f[i][0], f_ref[tag[i]].x, epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(f[i][1], f_ref[tag[i]].y, epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(f[i][2], f_ref[tag[i]].z, epsilon);
|
||||
}
|
||||
if (print_stats)
|
||||
std::cerr << "init_forces stats, newton on: " << stats << std::endl;
|
||||
if (print_stats) std::cerr << "init_forces stats, newton on: " << stats << std::endl;
|
||||
|
||||
Angle *angle = lmp->force->angle;
|
||||
double *stress = angle->virial;
|
||||
@ -401,13 +397,11 @@ TEST(AngleStyle, plain) {
|
||||
EXPECT_FP_LE_WITH_EPS(stress[3], test_config.init_stress.xy, epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(stress[4], test_config.init_stress.xz, epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(stress[5], test_config.init_stress.yz, epsilon);
|
||||
if (print_stats)
|
||||
std::cerr << "init_stress stats, newton on: " << stats << std::endl;
|
||||
if (print_stats) std::cerr << "init_stress stats, newton on: " << stats << std::endl;
|
||||
|
||||
stats.reset();
|
||||
EXPECT_FP_LE_WITH_EPS(angle->energy, test_config.init_energy, epsilon);
|
||||
if (print_stats)
|
||||
std::cerr << "init_energy stats, newton on: " << stats << std::endl;
|
||||
if (print_stats) std::cerr << "init_energy stats, newton on: " << stats << std::endl;
|
||||
|
||||
if (!verbose) ::testing::internal::CaptureStdout();
|
||||
run_lammps(lmp);
|
||||
@ -416,15 +410,14 @@ TEST(AngleStyle, plain) {
|
||||
f = lmp->atom->f;
|
||||
stress = angle->virial;
|
||||
const std::vector<coord_t> &f_run = test_config.run_forces;
|
||||
ASSERT_EQ(nlocal+1,f_run.size());
|
||||
ASSERT_EQ(nlocal + 1, f_run.size());
|
||||
stats.reset();
|
||||
for (int i=0; i < nlocal; ++i) {
|
||||
EXPECT_FP_LE_WITH_EPS(f[i][0], f_run[tag[i]].x, 10*epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(f[i][1], f_run[tag[i]].y, 10*epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(f[i][2], f_run[tag[i]].z, 10*epsilon);
|
||||
for (int i = 0; i < nlocal; ++i) {
|
||||
EXPECT_FP_LE_WITH_EPS(f[i][0], f_run[tag[i]].x, 10 * epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(f[i][1], f_run[tag[i]].y, 10 * epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(f[i][2], f_run[tag[i]].z, 10 * epsilon);
|
||||
}
|
||||
if (print_stats)
|
||||
std::cerr << "run_forces stats, newton on: " << stats << std::endl;
|
||||
if (print_stats) std::cerr << "run_forces stats, newton on: " << stats << std::endl;
|
||||
|
||||
stress = angle->virial;
|
||||
stats.reset();
|
||||
@ -434,52 +427,47 @@ TEST(AngleStyle, plain) {
|
||||
EXPECT_FP_LE_WITH_EPS(stress[3], test_config.run_stress.xy, epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(stress[4], test_config.run_stress.xz, epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(stress[5], test_config.run_stress.yz, epsilon);
|
||||
if (print_stats)
|
||||
std::cerr << "run_stress stats, newton on: " << stats << std::endl;
|
||||
if (print_stats) std::cerr << "run_stress stats, newton on: " << stats << std::endl;
|
||||
|
||||
stats.reset();
|
||||
int id = lmp->modify->find_compute("sum");
|
||||
double energy = lmp->modify->compute[id]->compute_scalar();
|
||||
EXPECT_FP_LE_WITH_EPS(angle->energy, test_config.run_energy, epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(angle->energy, energy, epsilon);
|
||||
if (print_stats)
|
||||
std::cerr << "run_energy stats, newton on: " << stats << std::endl;
|
||||
if (print_stats) std::cerr << "run_energy stats, newton on: " << stats << std::endl;
|
||||
|
||||
if (!verbose) ::testing::internal::CaptureStdout();
|
||||
cleanup_lammps(lmp,test_config);
|
||||
lmp = init_lammps(argc,argv,test_config,false);
|
||||
cleanup_lammps(lmp, test_config);
|
||||
lmp = init_lammps(argc, argv, test_config, false);
|
||||
if (!verbose) ::testing::internal::GetCapturedStdout();
|
||||
|
||||
// skip over these tests if newton bond is forced to be on
|
||||
if (lmp->force->newton_bond == 0) {
|
||||
|
||||
f=lmp->atom->f;
|
||||
tag=lmp->atom->tag;
|
||||
f = lmp->atom->f;
|
||||
tag = lmp->atom->tag;
|
||||
stats.reset();
|
||||
for (int i=0; i < nlocal; ++i) {
|
||||
for (int i = 0; i < nlocal; ++i) {
|
||||
EXPECT_FP_LE_WITH_EPS(f[i][0], f_ref[tag[i]].x, epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(f[i][1], f_ref[tag[i]].y, epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(f[i][2], f_ref[tag[i]].z, epsilon);
|
||||
}
|
||||
if (print_stats)
|
||||
std::cerr << "init_forces stats, newton off:" << stats << std::endl;
|
||||
if (print_stats) std::cerr << "init_forces stats, newton off:" << stats << std::endl;
|
||||
|
||||
angle = lmp->force->angle;
|
||||
stress = angle->virial;
|
||||
stats.reset();
|
||||
EXPECT_FP_LE_WITH_EPS(stress[0], test_config.init_stress.xx, 2*epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(stress[1], test_config.init_stress.yy, 2*epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(stress[2], test_config.init_stress.zz, 2*epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(stress[3], test_config.init_stress.xy, 2*epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(stress[4], test_config.init_stress.xz, 2*epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(stress[5], test_config.init_stress.yz, 2*epsilon);
|
||||
if (print_stats)
|
||||
std::cerr << "init_stress stats, newton off:" << stats << std::endl;
|
||||
EXPECT_FP_LE_WITH_EPS(stress[0], test_config.init_stress.xx, 2 * epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(stress[1], test_config.init_stress.yy, 2 * epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(stress[2], test_config.init_stress.zz, 2 * epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(stress[3], test_config.init_stress.xy, 2 * epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(stress[4], test_config.init_stress.xz, 2 * epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(stress[5], test_config.init_stress.yz, 2 * epsilon);
|
||||
if (print_stats) std::cerr << "init_stress stats, newton off:" << stats << std::endl;
|
||||
|
||||
stats.reset();
|
||||
EXPECT_FP_LE_WITH_EPS(angle->energy, test_config.init_energy, epsilon);
|
||||
if (print_stats)
|
||||
std::cerr << "init_energy stats, newton off:" << stats << std::endl;
|
||||
if (print_stats) std::cerr << "init_energy stats, newton off:" << stats << std::endl;
|
||||
|
||||
if (!verbose) ::testing::internal::CaptureStdout();
|
||||
run_lammps(lmp);
|
||||
@ -488,13 +476,12 @@ TEST(AngleStyle, plain) {
|
||||
f = lmp->atom->f;
|
||||
stress = angle->virial;
|
||||
stats.reset();
|
||||
for (int i=0; i < nlocal; ++i) {
|
||||
EXPECT_FP_LE_WITH_EPS(f[i][0], f_run[tag[i]].x, 10*epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(f[i][1], f_run[tag[i]].y, 10*epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(f[i][2], f_run[tag[i]].z, 10*epsilon);
|
||||
for (int i = 0; i < nlocal; ++i) {
|
||||
EXPECT_FP_LE_WITH_EPS(f[i][0], f_run[tag[i]].x, 10 * epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(f[i][1], f_run[tag[i]].y, 10 * epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(f[i][2], f_run[tag[i]].z, 10 * epsilon);
|
||||
}
|
||||
if (print_stats)
|
||||
std::cerr << "run_forces stats, newton off:" << stats << std::endl;
|
||||
if (print_stats) std::cerr << "run_forces stats, newton off:" << stats << std::endl;
|
||||
|
||||
stress = angle->virial;
|
||||
stats.reset();
|
||||
@ -504,33 +491,30 @@ TEST(AngleStyle, plain) {
|
||||
EXPECT_FP_LE_WITH_EPS(stress[3], test_config.run_stress.xy, epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(stress[4], test_config.run_stress.xz, epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(stress[5], test_config.run_stress.yz, epsilon);
|
||||
if (print_stats)
|
||||
std::cerr << "run_stress stats, newton off:" << stats << std::endl;
|
||||
if (print_stats) std::cerr << "run_stress stats, newton off:" << stats << std::endl;
|
||||
|
||||
stats.reset();
|
||||
id = lmp->modify->find_compute("sum");
|
||||
energy = lmp->modify->compute[id]->compute_scalar();
|
||||
EXPECT_FP_LE_WITH_EPS(angle->energy, test_config.run_energy, epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(angle->energy, energy, epsilon);
|
||||
if (print_stats)
|
||||
std::cerr << "run_energy stats, newton off:" << stats << std::endl;
|
||||
if (print_stats) std::cerr << "run_energy stats, newton off:" << stats << std::endl;
|
||||
}
|
||||
|
||||
if (!verbose) ::testing::internal::CaptureStdout();
|
||||
restart_lammps(lmp, test_config);
|
||||
if (!verbose) ::testing::internal::GetCapturedStdout();
|
||||
|
||||
f=lmp->atom->f;
|
||||
tag=lmp->atom->tag;
|
||||
f = lmp->atom->f;
|
||||
tag = lmp->atom->tag;
|
||||
stats.reset();
|
||||
ASSERT_EQ(nlocal+1,f_ref.size());
|
||||
for (int i=0; i < nlocal; ++i) {
|
||||
ASSERT_EQ(nlocal + 1, f_ref.size());
|
||||
for (int i = 0; i < nlocal; ++i) {
|
||||
EXPECT_FP_LE_WITH_EPS(f[i][0], f_ref[tag[i]].x, epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(f[i][1], f_ref[tag[i]].y, epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(f[i][2], f_ref[tag[i]].z, epsilon);
|
||||
}
|
||||
if (print_stats)
|
||||
std::cerr << "restart_forces stats:" << stats << std::endl;
|
||||
if (print_stats) std::cerr << "restart_forces stats:" << stats << std::endl;
|
||||
|
||||
angle = lmp->force->angle;
|
||||
stress = angle->virial;
|
||||
@ -541,29 +525,26 @@ TEST(AngleStyle, plain) {
|
||||
EXPECT_FP_LE_WITH_EPS(stress[3], test_config.init_stress.xy, epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(stress[4], test_config.init_stress.xz, epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(stress[5], test_config.init_stress.yz, epsilon);
|
||||
if (print_stats)
|
||||
std::cerr << "restart_stress stats:" << stats << std::endl;
|
||||
if (print_stats) std::cerr << "restart_stress stats:" << stats << std::endl;
|
||||
|
||||
stats.reset();
|
||||
EXPECT_FP_LE_WITH_EPS(angle->energy, test_config.init_energy, epsilon);
|
||||
if (print_stats)
|
||||
std::cerr << "restart_energy stats:" << stats << std::endl;
|
||||
if (print_stats) std::cerr << "restart_energy stats:" << stats << std::endl;
|
||||
|
||||
if (!verbose) ::testing::internal::CaptureStdout();
|
||||
data_lammps(lmp, test_config);
|
||||
if (!verbose) ::testing::internal::GetCapturedStdout();
|
||||
|
||||
f=lmp->atom->f;
|
||||
tag=lmp->atom->tag;
|
||||
f = lmp->atom->f;
|
||||
tag = lmp->atom->tag;
|
||||
stats.reset();
|
||||
ASSERT_EQ(nlocal+1,f_ref.size());
|
||||
for (int i=0; i < nlocal; ++i) {
|
||||
ASSERT_EQ(nlocal + 1, f_ref.size());
|
||||
for (int i = 0; i < nlocal; ++i) {
|
||||
EXPECT_FP_LE_WITH_EPS(f[i][0], f_ref[tag[i]].x, epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(f[i][1], f_ref[tag[i]].y, epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(f[i][2], f_ref[tag[i]].z, epsilon);
|
||||
}
|
||||
if (print_stats)
|
||||
std::cerr << "data_forces stats:" << stats << std::endl;
|
||||
if (print_stats) std::cerr << "data_forces stats:" << stats << std::endl;
|
||||
|
||||
angle = lmp->force->angle;
|
||||
stress = angle->virial;
|
||||
@ -574,37 +555,35 @@ TEST(AngleStyle, plain) {
|
||||
EXPECT_FP_LE_WITH_EPS(stress[3], test_config.init_stress.xy, epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(stress[4], test_config.init_stress.xz, epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(stress[5], test_config.init_stress.yz, epsilon);
|
||||
if (print_stats)
|
||||
std::cerr << "data_stress stats:" << stats << std::endl;
|
||||
if (print_stats) std::cerr << "data_stress stats:" << stats << std::endl;
|
||||
|
||||
stats.reset();
|
||||
EXPECT_FP_LE_WITH_EPS(angle->energy, test_config.init_energy, epsilon);
|
||||
if (print_stats)
|
||||
std::cerr << "data_energy stats:" << stats << std::endl;
|
||||
if (print_stats) std::cerr << "data_energy stats:" << stats << std::endl;
|
||||
|
||||
if (!verbose) ::testing::internal::CaptureStdout();
|
||||
cleanup_lammps(lmp,test_config);
|
||||
cleanup_lammps(lmp, test_config);
|
||||
if (!verbose) ::testing::internal::GetCapturedStdout();
|
||||
};
|
||||
|
||||
TEST(AngleStyle, omp) {
|
||||
TEST(AngleStyle, omp)
|
||||
{
|
||||
if (!LAMMPS::is_installed_pkg("USER-OMP")) GTEST_SKIP();
|
||||
const char *args[] = {"AngleStyle", "-log", "none", "-echo", "screen",
|
||||
"-nocite", "-pk", "omp", "4", "-sf", "omp"};
|
||||
const char *args[] = {"AngleStyle", "-log", "none", "-echo", "screen", "-nocite",
|
||||
"-pk", "omp", "4", "-sf", "omp"};
|
||||
char **argv = (char **)args;
|
||||
int argc = sizeof(args)/sizeof(char *);
|
||||
int argc = sizeof(args) / sizeof(char *);
|
||||
|
||||
::testing::internal::CaptureStdout();
|
||||
LAMMPS *lmp = init_lammps(argc,argv,test_config,true);
|
||||
LAMMPS *lmp = init_lammps(argc, argv, test_config, true);
|
||||
std::string output = ::testing::internal::GetCapturedStdout();
|
||||
if (verbose) std::cout << output;
|
||||
|
||||
if (!lmp) {
|
||||
std::cerr << "One or more prerequisite styles with /omp suffix\n"
|
||||
"are not available in this LAMMPS configuration:\n";
|
||||
for (auto& prerequisite : test_config.prerequisites) {
|
||||
std::cerr << prerequisite.first << "_style "
|
||||
<< prerequisite.second << "\n";
|
||||
"are not available in this LAMMPS configuration:\n";
|
||||
for (auto &prerequisite : test_config.prerequisites) {
|
||||
std::cerr << prerequisite.first << "_style " << prerequisite.second << "\n";
|
||||
}
|
||||
GTEST_SKIP();
|
||||
}
|
||||
@ -614,40 +593,37 @@ TEST(AngleStyle, omp) {
|
||||
|
||||
// abort if running in parallel and not all atoms are local
|
||||
const int nlocal = lmp->atom->nlocal;
|
||||
ASSERT_EQ(lmp->atom->natoms,nlocal);
|
||||
ASSERT_EQ(lmp->atom->natoms, nlocal);
|
||||
|
||||
// relax error a bit for USER-OMP package
|
||||
double epsilon = 5.0*test_config.epsilon;
|
||||
double **f=lmp->atom->f;
|
||||
tagint *tag=lmp->atom->tag;
|
||||
double epsilon = 5.0 * test_config.epsilon;
|
||||
double **f = lmp->atom->f;
|
||||
tagint *tag = lmp->atom->tag;
|
||||
const std::vector<coord_t> &f_ref = test_config.init_forces;
|
||||
ErrorStats stats;
|
||||
stats.reset();
|
||||
for (int i=0; i < nlocal; ++i) {
|
||||
for (int i = 0; i < nlocal; ++i) {
|
||||
EXPECT_FP_LE_WITH_EPS(f[i][0], f_ref[tag[i]].x, epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(f[i][1], f_ref[tag[i]].y, epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(f[i][2], f_ref[tag[i]].z, epsilon);
|
||||
}
|
||||
if (print_stats)
|
||||
std::cerr << "init_forces stats, newton on: " << stats << std::endl;
|
||||
if (print_stats) std::cerr << "init_forces stats, newton on: " << stats << std::endl;
|
||||
|
||||
Angle *angle = lmp->force->angle;
|
||||
double *stress = angle->virial;
|
||||
|
||||
stats.reset();
|
||||
EXPECT_FP_LE_WITH_EPS(stress[0], test_config.init_stress.xx, 10*epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(stress[1], test_config.init_stress.yy, 10*epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(stress[2], test_config.init_stress.zz, 10*epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(stress[3], test_config.init_stress.xy, 10*epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(stress[4], test_config.init_stress.xz, 10*epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(stress[5], test_config.init_stress.yz, 10*epsilon);
|
||||
if (print_stats)
|
||||
std::cerr << "init_stress stats, newton on: " << stats << std::endl;
|
||||
EXPECT_FP_LE_WITH_EPS(stress[0], test_config.init_stress.xx, 10 * epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(stress[1], test_config.init_stress.yy, 10 * epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(stress[2], test_config.init_stress.zz, 10 * epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(stress[3], test_config.init_stress.xy, 10 * epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(stress[4], test_config.init_stress.xz, 10 * epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(stress[5], test_config.init_stress.yz, 10 * epsilon);
|
||||
if (print_stats) std::cerr << "init_stress stats, newton on: " << stats << std::endl;
|
||||
|
||||
stats.reset();
|
||||
EXPECT_FP_LE_WITH_EPS(angle->energy, test_config.init_energy, epsilon);
|
||||
if (print_stats)
|
||||
std::cerr << "init_energy stats, newton on: " << stats << std::endl;
|
||||
if (print_stats) std::cerr << "init_energy stats, newton on: " << stats << std::endl;
|
||||
|
||||
if (!verbose) ::testing::internal::CaptureStdout();
|
||||
run_lammps(lmp);
|
||||
@ -656,26 +632,24 @@ TEST(AngleStyle, omp) {
|
||||
f = lmp->atom->f;
|
||||
stress = angle->virial;
|
||||
const std::vector<coord_t> &f_run = test_config.run_forces;
|
||||
ASSERT_EQ(nlocal+1,f_run.size());
|
||||
ASSERT_EQ(nlocal + 1, f_run.size());
|
||||
stats.reset();
|
||||
for (int i=0; i < nlocal; ++i) {
|
||||
EXPECT_FP_LE_WITH_EPS(f[i][0], f_run[tag[i]].x, 10*epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(f[i][1], f_run[tag[i]].y, 10*epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(f[i][2], f_run[tag[i]].z, 10*epsilon);
|
||||
for (int i = 0; i < nlocal; ++i) {
|
||||
EXPECT_FP_LE_WITH_EPS(f[i][0], f_run[tag[i]].x, 10 * epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(f[i][1], f_run[tag[i]].y, 10 * epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(f[i][2], f_run[tag[i]].z, 10 * epsilon);
|
||||
}
|
||||
if (print_stats)
|
||||
std::cerr << "run_forces stats, newton on: " << stats << std::endl;
|
||||
if (print_stats) std::cerr << "run_forces stats, newton on: " << stats << std::endl;
|
||||
|
||||
stress = angle->virial;
|
||||
stats.reset();
|
||||
EXPECT_FP_LE_WITH_EPS(stress[0], test_config.run_stress.xx, 10*epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(stress[1], test_config.run_stress.yy, 10*epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(stress[2], test_config.run_stress.zz, 10*epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(stress[3], test_config.run_stress.xy, 10*epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(stress[4], test_config.run_stress.xz, 10*epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(stress[5], test_config.run_stress.yz, 10*epsilon);
|
||||
if (print_stats)
|
||||
std::cerr << "run_stress stats, newton on: " << stats << std::endl;
|
||||
EXPECT_FP_LE_WITH_EPS(stress[0], test_config.run_stress.xx, 10 * epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(stress[1], test_config.run_stress.yy, 10 * epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(stress[2], test_config.run_stress.zz, 10 * epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(stress[3], test_config.run_stress.xy, 10 * epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(stress[4], test_config.run_stress.xz, 10 * epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(stress[5], test_config.run_stress.yz, 10 * epsilon);
|
||||
if (print_stats) std::cerr << "run_stress stats, newton on: " << stats << std::endl;
|
||||
|
||||
stats.reset();
|
||||
int id = lmp->modify->find_compute("sum");
|
||||
@ -683,46 +657,42 @@ TEST(AngleStyle, omp) {
|
||||
EXPECT_FP_LE_WITH_EPS(angle->energy, test_config.run_energy, epsilon);
|
||||
// TODO: this is currently broken for USER-OMP with angle style hybrid
|
||||
// needs to be fixed in the main code somewhere. Not sure where, though.
|
||||
if (test_config.angle_style.substr(0,6) != "hybrid")
|
||||
if (test_config.angle_style.substr(0, 6) != "hybrid")
|
||||
EXPECT_FP_LE_WITH_EPS(angle->energy, energy, epsilon);
|
||||
if (print_stats)
|
||||
std::cerr << "run_energy stats, newton on: " << stats << std::endl;
|
||||
if (print_stats) std::cerr << "run_energy stats, newton on: " << stats << std::endl;
|
||||
|
||||
if (!verbose) ::testing::internal::CaptureStdout();
|
||||
cleanup_lammps(lmp,test_config);
|
||||
lmp = init_lammps(argc,argv,test_config,false);
|
||||
cleanup_lammps(lmp, test_config);
|
||||
lmp = init_lammps(argc, argv, test_config, false);
|
||||
if (!verbose) ::testing::internal::GetCapturedStdout();
|
||||
|
||||
// skip over these tests if newton bond is forced to be on
|
||||
if (lmp->force->newton_bond == 0) {
|
||||
|
||||
f=lmp->atom->f;
|
||||
tag=lmp->atom->tag;
|
||||
f = lmp->atom->f;
|
||||
tag = lmp->atom->tag;
|
||||
stats.reset();
|
||||
for (int i=0; i < nlocal; ++i) {
|
||||
for (int i = 0; i < nlocal; ++i) {
|
||||
EXPECT_FP_LE_WITH_EPS(f[i][0], f_ref[tag[i]].x, epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(f[i][1], f_ref[tag[i]].y, epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(f[i][2], f_ref[tag[i]].z, epsilon);
|
||||
}
|
||||
if (print_stats)
|
||||
std::cerr << "init_forces stats, newton off:" << stats << std::endl;
|
||||
if (print_stats) std::cerr << "init_forces stats, newton off:" << stats << std::endl;
|
||||
|
||||
angle = lmp->force->angle;
|
||||
stress = angle->virial;
|
||||
stats.reset();
|
||||
EXPECT_FP_LE_WITH_EPS(stress[0], test_config.init_stress.xx, 10*epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(stress[1], test_config.init_stress.yy, 10*epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(stress[2], test_config.init_stress.zz, 10*epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(stress[3], test_config.init_stress.xy, 10*epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(stress[4], test_config.init_stress.xz, 10*epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(stress[5], test_config.init_stress.yz, 10*epsilon);
|
||||
if (print_stats)
|
||||
std::cerr << "init_stress stats, newton off:" << stats << std::endl;
|
||||
EXPECT_FP_LE_WITH_EPS(stress[0], test_config.init_stress.xx, 10 * epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(stress[1], test_config.init_stress.yy, 10 * epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(stress[2], test_config.init_stress.zz, 10 * epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(stress[3], test_config.init_stress.xy, 10 * epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(stress[4], test_config.init_stress.xz, 10 * epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(stress[5], test_config.init_stress.yz, 10 * epsilon);
|
||||
if (print_stats) std::cerr << "init_stress stats, newton off:" << stats << std::endl;
|
||||
|
||||
stats.reset();
|
||||
EXPECT_FP_LE_WITH_EPS(angle->energy, test_config.init_energy, epsilon);
|
||||
if (print_stats)
|
||||
std::cerr << "init_energy stats, newton off:" << stats << std::endl;
|
||||
if (print_stats) std::cerr << "init_energy stats, newton off:" << stats << std::endl;
|
||||
|
||||
if (!verbose) ::testing::internal::CaptureStdout();
|
||||
run_lammps(lmp);
|
||||
@ -730,24 +700,22 @@ TEST(AngleStyle, omp) {
|
||||
|
||||
f = lmp->atom->f;
|
||||
stats.reset();
|
||||
for (int i=0; i < nlocal; ++i) {
|
||||
EXPECT_FP_LE_WITH_EPS(f[i][0], f_run[tag[i]].x, 10*epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(f[i][1], f_run[tag[i]].y, 10*epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(f[i][2], f_run[tag[i]].z, 10*epsilon);
|
||||
for (int i = 0; i < nlocal; ++i) {
|
||||
EXPECT_FP_LE_WITH_EPS(f[i][0], f_run[tag[i]].x, 10 * epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(f[i][1], f_run[tag[i]].y, 10 * epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(f[i][2], f_run[tag[i]].z, 10 * epsilon);
|
||||
}
|
||||
if (print_stats)
|
||||
std::cerr << "run_forces stats, newton off:" << stats << std::endl;
|
||||
if (print_stats) std::cerr << "run_forces stats, newton off:" << stats << std::endl;
|
||||
|
||||
stress = angle->virial;
|
||||
stats.reset();
|
||||
EXPECT_FP_LE_WITH_EPS(stress[0], test_config.run_stress.xx, 10*epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(stress[1], test_config.run_stress.yy, 10*epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(stress[2], test_config.run_stress.zz, 10*epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(stress[3], test_config.run_stress.xy, 10*epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(stress[4], test_config.run_stress.xz, 10*epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(stress[5], test_config.run_stress.yz, 10*epsilon);
|
||||
if (print_stats)
|
||||
std::cerr << "run_stress stats, newton off:" << stats << std::endl;
|
||||
EXPECT_FP_LE_WITH_EPS(stress[0], test_config.run_stress.xx, 10 * epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(stress[1], test_config.run_stress.yy, 10 * epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(stress[2], test_config.run_stress.zz, 10 * epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(stress[3], test_config.run_stress.xy, 10 * epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(stress[4], test_config.run_stress.xz, 10 * epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(stress[5], test_config.run_stress.yz, 10 * epsilon);
|
||||
if (print_stats) std::cerr << "run_stress stats, newton off:" << stats << std::endl;
|
||||
|
||||
stats.reset();
|
||||
id = lmp->modify->find_compute("sum");
|
||||
@ -755,33 +723,32 @@ TEST(AngleStyle, omp) {
|
||||
EXPECT_FP_LE_WITH_EPS(angle->energy, test_config.run_energy, epsilon);
|
||||
// TODO: this is currently broken for USER-OMP with angle style hybrid
|
||||
// needs to be fixed in the main code somewhere. Not sure where, though.
|
||||
if (test_config.angle_style.substr(0,6) != "hybrid")
|
||||
if (test_config.angle_style.substr(0, 6) != "hybrid")
|
||||
EXPECT_FP_LE_WITH_EPS(angle->energy, energy, epsilon);
|
||||
if (print_stats)
|
||||
std::cerr << "run_energy stats, newton off:" << stats << std::endl;
|
||||
if (print_stats) std::cerr << "run_energy stats, newton off:" << stats << std::endl;
|
||||
}
|
||||
|
||||
if (!verbose) ::testing::internal::CaptureStdout();
|
||||
cleanup_lammps(lmp,test_config);
|
||||
cleanup_lammps(lmp, test_config);
|
||||
if (!verbose) ::testing::internal::GetCapturedStdout();
|
||||
};
|
||||
|
||||
TEST(AngleStyle, single) {
|
||||
const char *args[] = {"AngleStyle", "-log", "none", "-echo", "screen", "-nocite" };
|
||||
TEST(AngleStyle, single)
|
||||
{
|
||||
const char *args[] = {"AngleStyle", "-log", "none", "-echo", "screen", "-nocite"};
|
||||
char **argv = (char **)args;
|
||||
int argc = sizeof(args)/sizeof(char *);
|
||||
int argc = sizeof(args) / sizeof(char *);
|
||||
|
||||
// create a LAMMPS instance with standard settings to detect the number of atom types
|
||||
if (!verbose) ::testing::internal::CaptureStdout();
|
||||
LAMMPS *lmp = init_lammps(argc,argv,test_config);
|
||||
LAMMPS *lmp = init_lammps(argc, argv, test_config);
|
||||
if (!verbose) ::testing::internal::GetCapturedStdout();
|
||||
|
||||
if (!lmp) {
|
||||
std::cerr << "One or more prerequisite styles are not available "
|
||||
"in this LAMMPS configuration:\n";
|
||||
for (auto& prerequisite : test_config.prerequisites) {
|
||||
std::cerr << prerequisite.first << "_style "
|
||||
<< prerequisite.second << "\n";
|
||||
"in this LAMMPS configuration:\n";
|
||||
for (auto &prerequisite : test_config.prerequisites) {
|
||||
std::cerr << prerequisite.first << "_style " << prerequisite.second << "\n";
|
||||
}
|
||||
GTEST_SKIP();
|
||||
}
|
||||
@ -792,13 +759,13 @@ TEST(AngleStyle, single) {
|
||||
if (molecular != 1) {
|
||||
std::cerr << "Only simple molecular atom styles are supported\n";
|
||||
if (!verbose) ::testing::internal::CaptureStdout();
|
||||
cleanup_lammps(lmp,test_config);
|
||||
cleanup_lammps(lmp, test_config);
|
||||
if (!verbose) ::testing::internal::GetCapturedStdout();
|
||||
GTEST_SKIP();
|
||||
}
|
||||
|
||||
// utility lambda to improve readability
|
||||
auto command = [&](const std::string & line) {
|
||||
auto command = [&](const std::string &line) {
|
||||
lmp->input->one(line.c_str());
|
||||
};
|
||||
|
||||
@ -810,7 +777,7 @@ TEST(AngleStyle, single) {
|
||||
|
||||
command("variable input_dir index " + INPUT_FOLDER);
|
||||
|
||||
for (auto& pre_command : test_config.pre_commands) {
|
||||
for (auto &pre_command : test_config.pre_commands) {
|
||||
command(pre_command);
|
||||
}
|
||||
|
||||
@ -827,7 +794,7 @@ TEST(AngleStyle, single) {
|
||||
char buf[10];
|
||||
std::string cmd("create_box 1 box");
|
||||
cmd += " angle/types ";
|
||||
snprintf(buf,10,"%d",nangletypes);
|
||||
snprintf(buf, 10, "%d", nangletypes);
|
||||
cmd += buf;
|
||||
cmd += " extra/angle/per/atom 2";
|
||||
cmd += " extra/special/per/atom 2";
|
||||
@ -839,7 +806,7 @@ TEST(AngleStyle, single) {
|
||||
command("angle_style " + test_config.angle_style);
|
||||
Angle *angle = lmp->force->angle;
|
||||
|
||||
for (auto& angle_coeff : test_config.angle_coeff) {
|
||||
for (auto &angle_coeff : test_config.angle_coeff) {
|
||||
command("angle_coeff " + angle_coeff);
|
||||
}
|
||||
|
||||
@ -850,7 +817,7 @@ TEST(AngleStyle, single) {
|
||||
command("create_atoms 1 single 5.0 0.75 0.4 units box");
|
||||
command("create_bonds single/angle 1 1 2 3");
|
||||
|
||||
for (auto& post_command : test_config.post_commands) {
|
||||
for (auto &post_command : test_config.post_commands) {
|
||||
command(post_command);
|
||||
}
|
||||
|
||||
@ -904,14 +871,13 @@ TEST(AngleStyle, single) {
|
||||
EXPECT_FP_LE_WITH_EPS(eangle[1], esingle[1], epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(eangle[2], esingle[2], epsilon);
|
||||
EXPECT_FP_LE_WITH_EPS(eangle[3], esingle[3], epsilon);
|
||||
if (print_stats)
|
||||
std::cerr << "single_energy stats:" << stats << std::endl;
|
||||
if (print_stats) std::cerr << "single_energy stats:" << stats << std::endl;
|
||||
|
||||
int i = 0;
|
||||
for (auto &dist : test_config.equilibrium)
|
||||
EXPECT_NEAR(dist,angle->equilibrium_angle(++i),0.00001);
|
||||
EXPECT_NEAR(dist, angle->equilibrium_angle(++i), 0.00001);
|
||||
|
||||
if (!verbose) ::testing::internal::CaptureStdout();
|
||||
cleanup_lammps(lmp,test_config);
|
||||
cleanup_lammps(lmp, test_config);
|
||||
if (!verbose) ::testing::internal::GetCapturedStdout();
|
||||
}
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@ -12,32 +12,36 @@
|
||||
------------------------------------------------------------------------- */
|
||||
|
||||
#include "error_stats.h"
|
||||
#include <cmath>
|
||||
#include <iostream>
|
||||
#include <string>
|
||||
#include <cmath>
|
||||
|
||||
void ErrorStats::reset() {
|
||||
void ErrorStats::reset()
|
||||
{
|
||||
num = 0;
|
||||
maxidx = -1;
|
||||
sum = sumsq = maxerr =0.0;
|
||||
sum = sumsq = maxerr = 0.0;
|
||||
}
|
||||
|
||||
void ErrorStats::add(const double &val) {
|
||||
void ErrorStats::add(const double &val)
|
||||
{
|
||||
++num;
|
||||
if (val > maxerr) {
|
||||
maxidx = num;
|
||||
maxerr = val;
|
||||
}
|
||||
sum += val;
|
||||
sumsq += val*val;
|
||||
sumsq += val * val;
|
||||
}
|
||||
|
||||
double ErrorStats::avg() const {
|
||||
return (num > 0) ? sum/num : 0.0;
|
||||
double ErrorStats::avg() const
|
||||
{
|
||||
return (num > 0) ? sum / num : 0.0;
|
||||
}
|
||||
|
||||
double ErrorStats::dev() const {
|
||||
return (num > 0) ? sqrt(sumsq/num - sum/num*sum/num) : 0.0;
|
||||
double ErrorStats::dev() const
|
||||
{
|
||||
return (num > 0) ? sqrt(sumsq / num - sum / num * sum / num) : 0.0;
|
||||
}
|
||||
|
||||
std::ostream &operator<<(std::ostream &out, const ErrorStats &stats)
|
||||
@ -46,9 +50,7 @@ std::ostream &operator<<(std::ostream &out, const ErrorStats &stats)
|
||||
const std::streamsize width = out.width(10);
|
||||
const std::streamsize prec = out.precision(3);
|
||||
|
||||
out << std::scientific
|
||||
<< "Average: " << stats.avg()
|
||||
<< " StdDev: " << stats.dev()
|
||||
out << std::scientific << "Average: " << stats.avg() << " StdDev: " << stats.dev()
|
||||
<< " MaxErr: " << stats.max();
|
||||
|
||||
out.precision(prec);
|
||||
@ -57,4 +59,3 @@ std::ostream &operator<<(std::ostream &out, const ErrorStats &stats)
|
||||
|
||||
return out << " @ item: " << stats.idx();
|
||||
}
|
||||
|
||||
|
||||
@ -20,9 +20,7 @@ class ErrorStats {
|
||||
public:
|
||||
friend std::ostream &operator<<(std::ostream &out, const ErrorStats &stats);
|
||||
|
||||
ErrorStats() {
|
||||
reset();
|
||||
}
|
||||
ErrorStats() { reset(); }
|
||||
virtual ~ErrorStats() {}
|
||||
|
||||
void reset();
|
||||
@ -33,8 +31,8 @@ public:
|
||||
double idx() const { return maxidx; }
|
||||
|
||||
private:
|
||||
double sum,sumsq,maxerr;
|
||||
int num,maxidx;
|
||||
double sum, sumsq, maxerr;
|
||||
int num, maxidx;
|
||||
};
|
||||
|
||||
extern std::ostream &operator<<(std::ostream &out, const ErrorStats &stats);
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@ -19,11 +19,11 @@
|
||||
#include <vector>
|
||||
|
||||
struct coord_t {
|
||||
double x,y,z;
|
||||
double x, y, z;
|
||||
};
|
||||
|
||||
struct stress_t {
|
||||
double xx,yy,zz,xy,xz,yz;
|
||||
double xx, yy, zz, xy, xz, yz;
|
||||
};
|
||||
|
||||
class TestConfig {
|
||||
@ -32,7 +32,7 @@ public:
|
||||
std::string date_generated;
|
||||
std::string basename;
|
||||
double epsilon;
|
||||
std::vector<std::pair<std::string,std::string>> prerequisites;
|
||||
std::vector<std::pair<std::string, std::string>> prerequisites;
|
||||
std::vector<std::string> pre_commands;
|
||||
std::vector<std::string> post_commands;
|
||||
std::string input_file;
|
||||
@ -48,7 +48,7 @@ public:
|
||||
std::vector<std::string> dihedral_coeff;
|
||||
std::vector<std::string> improper_coeff;
|
||||
std::vector<double> equilibrium;
|
||||
std::vector<std::pair<std::string,int>> extract;
|
||||
std::vector<std::pair<std::string, int>> extract;
|
||||
int natoms;
|
||||
double init_energy;
|
||||
double run_energy;
|
||||
@ -61,26 +61,13 @@ public:
|
||||
std::vector<coord_t> init_forces;
|
||||
std::vector<coord_t> run_forces;
|
||||
|
||||
TestConfig() : lammps_version(""),
|
||||
date_generated(""),
|
||||
basename(""),
|
||||
epsilon(1.0e-14),
|
||||
input_file(""),
|
||||
pair_style("zero"),
|
||||
bond_style("zero"),
|
||||
angle_style("zero"),
|
||||
dihedral_style("zero"),
|
||||
improper_style("zero"),
|
||||
kspace_style("none"),
|
||||
natoms(0),
|
||||
init_energy(0),
|
||||
run_energy(0),
|
||||
init_vdwl(0),
|
||||
run_vdwl(0),
|
||||
init_coul(0),
|
||||
run_coul(0),
|
||||
init_stress({0,0,0,0,0,0}),
|
||||
run_stress({0,0,0,0,0,0}) {
|
||||
TestConfig() :
|
||||
lammps_version(""), date_generated(""), basename(""), epsilon(1.0e-14), input_file(""),
|
||||
pair_style("zero"), bond_style("zero"), angle_style("zero"), dihedral_style("zero"),
|
||||
improper_style("zero"), kspace_style("none"), natoms(0), init_energy(0), run_energy(0),
|
||||
init_vdwl(0), run_vdwl(0), init_coul(0), run_coul(0), init_stress({0, 0, 0, 0, 0, 0}),
|
||||
run_stress({0, 0, 0, 0, 0, 0})
|
||||
{
|
||||
prerequisites.clear();
|
||||
pre_commands.clear();
|
||||
post_commands.clear();
|
||||
@ -93,10 +80,10 @@ public:
|
||||
init_forces.clear();
|
||||
run_forces.clear();
|
||||
}
|
||||
virtual ~TestConfig() {};
|
||||
virtual ~TestConfig(){};
|
||||
|
||||
private:
|
||||
TestConfig(const TestConfig &) {};
|
||||
TestConfig(const TestConfig &){};
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
@ -11,75 +11,78 @@
|
||||
See the README file in the top-level LAMMPS directory.
|
||||
------------------------------------------------------------------------- */
|
||||
|
||||
#include "test_config.h"
|
||||
#include "test_config_reader.h"
|
||||
#include "yaml_reader.h"
|
||||
#include "test_config.h"
|
||||
#include "yaml.h"
|
||||
#include "yaml_reader.h"
|
||||
|
||||
#include <cstring>
|
||||
#include <cstdlib>
|
||||
#include <cstring>
|
||||
|
||||
#include <string>
|
||||
#include <iostream>
|
||||
#include <sstream>
|
||||
#include <string>
|
||||
#include <utility>
|
||||
#include <vector>
|
||||
|
||||
TestConfigReader::TestConfigReader(TestConfig & config)
|
||||
: YamlReader(), config(config) {
|
||||
TestConfigReader::TestConfigReader(TestConfig &config) : YamlReader(), config(config)
|
||||
{
|
||||
consumers["lammps_version"] = &TestConfigReader::lammps_version;
|
||||
consumers["date_generated"] = &TestConfigReader::date_generated;
|
||||
consumers["epsilon"] = &TestConfigReader::epsilon;
|
||||
consumers["prerequisites"] = &TestConfigReader::prerequisites;
|
||||
consumers["pre_commands"] = &TestConfigReader::pre_commands;
|
||||
consumers["post_commands"] = &TestConfigReader::post_commands;
|
||||
consumers["input_file"] = &TestConfigReader::input_file;
|
||||
consumers["extract"] = &TestConfigReader::extract;
|
||||
consumers["natoms"] = &TestConfigReader::natoms;
|
||||
consumers["init_stress"] = &TestConfigReader::init_stress;
|
||||
consumers["run_stress"] = &TestConfigReader::run_stress;
|
||||
consumers["init_forces"] = &TestConfigReader::init_forces;
|
||||
consumers["run_forces"] = &TestConfigReader::run_forces;
|
||||
consumers["epsilon"] = &TestConfigReader::epsilon;
|
||||
consumers["prerequisites"] = &TestConfigReader::prerequisites;
|
||||
consumers["pre_commands"] = &TestConfigReader::pre_commands;
|
||||
consumers["post_commands"] = &TestConfigReader::post_commands;
|
||||
consumers["input_file"] = &TestConfigReader::input_file;
|
||||
consumers["extract"] = &TestConfigReader::extract;
|
||||
consumers["natoms"] = &TestConfigReader::natoms;
|
||||
consumers["init_stress"] = &TestConfigReader::init_stress;
|
||||
consumers["run_stress"] = &TestConfigReader::run_stress;
|
||||
consumers["init_forces"] = &TestConfigReader::init_forces;
|
||||
consumers["run_forces"] = &TestConfigReader::run_forces;
|
||||
|
||||
consumers["pair_style"] = &TestConfigReader::pair_style;
|
||||
consumers["pair_coeff"] = &TestConfigReader::pair_coeff;
|
||||
consumers["init_vdwl"] = &TestConfigReader::init_vdwl;
|
||||
consumers["init_coul"] = &TestConfigReader::init_coul;
|
||||
consumers["run_vdwl"] = &TestConfigReader::run_vdwl;
|
||||
consumers["run_coul"] = &TestConfigReader::run_coul;
|
||||
consumers["pair_style"] = &TestConfigReader::pair_style;
|
||||
consumers["pair_coeff"] = &TestConfigReader::pair_coeff;
|
||||
consumers["init_vdwl"] = &TestConfigReader::init_vdwl;
|
||||
consumers["init_coul"] = &TestConfigReader::init_coul;
|
||||
consumers["run_vdwl"] = &TestConfigReader::run_vdwl;
|
||||
consumers["run_coul"] = &TestConfigReader::run_coul;
|
||||
|
||||
consumers["bond_style"] = &TestConfigReader::bond_style;
|
||||
consumers["bond_coeff"] = &TestConfigReader::bond_coeff;
|
||||
consumers["angle_style"] = &TestConfigReader::angle_style;
|
||||
consumers["angle_coeff"] = &TestConfigReader::angle_coeff;
|
||||
consumers["init_energy"] = &TestConfigReader::init_energy;
|
||||
consumers["run_energy"] = &TestConfigReader::run_energy;
|
||||
consumers["equilibrium"] = &TestConfigReader::equilibrium;
|
||||
consumers["bond_style"] = &TestConfigReader::bond_style;
|
||||
consumers["bond_coeff"] = &TestConfigReader::bond_coeff;
|
||||
consumers["angle_style"] = &TestConfigReader::angle_style;
|
||||
consumers["angle_coeff"] = &TestConfigReader::angle_coeff;
|
||||
consumers["init_energy"] = &TestConfigReader::init_energy;
|
||||
consumers["run_energy"] = &TestConfigReader::run_energy;
|
||||
consumers["equilibrium"] = &TestConfigReader::equilibrium;
|
||||
}
|
||||
|
||||
void TestConfigReader::prerequisites(const yaml_event_t & event) {
|
||||
void TestConfigReader::prerequisites(const yaml_event_t &event)
|
||||
{
|
||||
config.prerequisites.clear();
|
||||
std::stringstream data((char *)event.data.scalar.value);
|
||||
std::string key, value;
|
||||
|
||||
while(1) {
|
||||
while (1) {
|
||||
data >> key >> value;
|
||||
if (data.eof()) break;
|
||||
config.prerequisites.push_back(std::make_pair(key,value));
|
||||
config.prerequisites.push_back(std::make_pair(key, value));
|
||||
}
|
||||
}
|
||||
|
||||
void TestConfigReader::pre_commands(const yaml_event_t & event) {
|
||||
void TestConfigReader::pre_commands(const yaml_event_t &event)
|
||||
{
|
||||
config.pre_commands.clear();
|
||||
std::stringstream data((char *)event.data.scalar.value);
|
||||
std::string line;
|
||||
|
||||
while(std::getline(data, line, '\n')) {
|
||||
while (std::getline(data, line, '\n')) {
|
||||
config.pre_commands.push_back(line);
|
||||
}
|
||||
}
|
||||
|
||||
void TestConfigReader::post_commands(const yaml_event_t & event) {
|
||||
void TestConfigReader::post_commands(const yaml_event_t &event)
|
||||
{
|
||||
config.post_commands.clear();
|
||||
std::stringstream data((char *)event.data.scalar.value);
|
||||
std::string line;
|
||||
@ -89,63 +92,68 @@ void TestConfigReader::post_commands(const yaml_event_t & event) {
|
||||
}
|
||||
}
|
||||
|
||||
void TestConfigReader::lammps_version(const yaml_event_t & event) {
|
||||
void TestConfigReader::lammps_version(const yaml_event_t &event)
|
||||
{
|
||||
config.lammps_version = (char *)event.data.scalar.value;
|
||||
}
|
||||
|
||||
void TestConfigReader::date_generated(const yaml_event_t & event) {
|
||||
void TestConfigReader::date_generated(const yaml_event_t &event)
|
||||
{
|
||||
config.date_generated = (char *)event.data.scalar.value;
|
||||
}
|
||||
|
||||
void TestConfigReader::epsilon(const yaml_event_t & event) {
|
||||
void TestConfigReader::epsilon(const yaml_event_t &event)
|
||||
{
|
||||
config.epsilon = atof((char *)event.data.scalar.value);
|
||||
}
|
||||
|
||||
void TestConfigReader::input_file(const yaml_event_t & event) {
|
||||
void TestConfigReader::input_file(const yaml_event_t &event)
|
||||
{
|
||||
config.input_file = (char *)event.data.scalar.value;
|
||||
}
|
||||
|
||||
void TestConfigReader::extract(const yaml_event_t & event) {
|
||||
void TestConfigReader::extract(const yaml_event_t &event)
|
||||
{
|
||||
config.extract.clear();
|
||||
std::stringstream data((char *)event.data.scalar.value);
|
||||
std::string name;
|
||||
int value;
|
||||
while(1) {
|
||||
while (1) {
|
||||
data >> name >> value;
|
||||
if (data.eof()) break;
|
||||
config.extract.push_back(make_pair(name, value));
|
||||
}
|
||||
}
|
||||
|
||||
void TestConfigReader::natoms(const yaml_event_t & event) {
|
||||
void TestConfigReader::natoms(const yaml_event_t &event)
|
||||
{
|
||||
config.natoms = atoi((char *)event.data.scalar.value);
|
||||
}
|
||||
|
||||
void TestConfigReader::init_stress(const yaml_event_t & event) {
|
||||
void TestConfigReader::init_stress(const yaml_event_t &event)
|
||||
{
|
||||
stress_t stress;
|
||||
sscanf((char *)event.data.scalar.value,
|
||||
"%lg %lg %lg %lg %lg %lg",
|
||||
&stress.xx, &stress.yy, &stress.zz,
|
||||
&stress.xy, &stress.xz, &stress.yz);
|
||||
sscanf((char *)event.data.scalar.value, "%lg %lg %lg %lg %lg %lg", &stress.xx, &stress.yy,
|
||||
&stress.zz, &stress.xy, &stress.xz, &stress.yz);
|
||||
config.init_stress = stress;
|
||||
}
|
||||
|
||||
void TestConfigReader::run_stress(const yaml_event_t & event) {
|
||||
void TestConfigReader::run_stress(const yaml_event_t &event)
|
||||
{
|
||||
stress_t stress;
|
||||
sscanf((char *)event.data.scalar.value,
|
||||
"%lg %lg %lg %lg %lg %lg",
|
||||
&stress.xx, &stress.yy, &stress.zz,
|
||||
&stress.xy, &stress.xz, &stress.yz);
|
||||
sscanf((char *)event.data.scalar.value, "%lg %lg %lg %lg %lg %lg", &stress.xx, &stress.yy,
|
||||
&stress.zz, &stress.xy, &stress.xz, &stress.yz);
|
||||
config.run_stress = stress;
|
||||
}
|
||||
|
||||
void TestConfigReader::init_forces(const yaml_event_t & event) {
|
||||
void TestConfigReader::init_forces(const yaml_event_t &event)
|
||||
{
|
||||
config.init_forces.clear();
|
||||
config.init_forces.resize(config.natoms+1);
|
||||
std::stringstream data((const char*)event.data.scalar.value);
|
||||
config.init_forces.resize(config.natoms + 1);
|
||||
std::stringstream data((const char *)event.data.scalar.value);
|
||||
std::string line;
|
||||
|
||||
while(std::getline(data, line, '\n')) {
|
||||
while (std::getline(data, line, '\n')) {
|
||||
int tag = 0;
|
||||
coord_t xyz;
|
||||
sscanf(line.c_str(), "%d %lg %lg %lg", &tag, &xyz.x, &xyz.y, &xyz.z);
|
||||
@ -153,13 +161,14 @@ void TestConfigReader::init_forces(const yaml_event_t & event) {
|
||||
}
|
||||
}
|
||||
|
||||
void TestConfigReader::run_forces(const yaml_event_t & event) {
|
||||
void TestConfigReader::run_forces(const yaml_event_t &event)
|
||||
{
|
||||
config.run_forces.clear();
|
||||
config.run_forces.resize(config.natoms+1);
|
||||
config.run_forces.resize(config.natoms + 1);
|
||||
std::stringstream data((char *)event.data.scalar.value);
|
||||
std::string line;
|
||||
|
||||
while(std::getline(data, line, '\n')) {
|
||||
while (std::getline(data, line, '\n')) {
|
||||
int tag;
|
||||
coord_t xyz;
|
||||
sscanf(line.c_str(), "%d %lg %lg %lg", &tag, &xyz.x, &xyz.y, &xyz.z);
|
||||
@ -167,11 +176,13 @@ void TestConfigReader::run_forces(const yaml_event_t & event) {
|
||||
}
|
||||
}
|
||||
|
||||
void TestConfigReader::pair_style(const yaml_event_t & event) {
|
||||
void TestConfigReader::pair_style(const yaml_event_t &event)
|
||||
{
|
||||
config.pair_style = (char *)event.data.scalar.value;
|
||||
}
|
||||
|
||||
void TestConfigReader::pair_coeff(const yaml_event_t & event) {
|
||||
void TestConfigReader::pair_coeff(const yaml_event_t &event)
|
||||
{
|
||||
config.pair_coeff.clear();
|
||||
std::stringstream data((char *)event.data.scalar.value);
|
||||
std::string line;
|
||||
@ -181,11 +192,13 @@ void TestConfigReader::pair_coeff(const yaml_event_t & event) {
|
||||
}
|
||||
}
|
||||
|
||||
void TestConfigReader::bond_style(const yaml_event_t & event) {
|
||||
void TestConfigReader::bond_style(const yaml_event_t &event)
|
||||
{
|
||||
config.bond_style = (char *)event.data.scalar.value;
|
||||
}
|
||||
|
||||
void TestConfigReader::bond_coeff(const yaml_event_t & event) {
|
||||
void TestConfigReader::bond_coeff(const yaml_event_t &event)
|
||||
{
|
||||
config.bond_coeff.clear();
|
||||
std::stringstream data((char *)event.data.scalar.value);
|
||||
std::string line;
|
||||
@ -195,11 +208,13 @@ void TestConfigReader::bond_coeff(const yaml_event_t & event) {
|
||||
}
|
||||
}
|
||||
|
||||
void TestConfigReader::angle_style(const yaml_event_t & event) {
|
||||
void TestConfigReader::angle_style(const yaml_event_t &event)
|
||||
{
|
||||
config.angle_style = (char *)event.data.scalar.value;
|
||||
}
|
||||
|
||||
void TestConfigReader::angle_coeff(const yaml_event_t & event) {
|
||||
void TestConfigReader::angle_coeff(const yaml_event_t &event)
|
||||
{
|
||||
config.angle_coeff.clear();
|
||||
std::stringstream data((char *)event.data.scalar.value);
|
||||
std::string line;
|
||||
@ -209,40 +224,46 @@ void TestConfigReader::angle_coeff(const yaml_event_t & event) {
|
||||
}
|
||||
}
|
||||
|
||||
void TestConfigReader::equilibrium(const yaml_event_t & event) {
|
||||
void TestConfigReader::equilibrium(const yaml_event_t &event)
|
||||
{
|
||||
std::stringstream data((char *)event.data.scalar.value);
|
||||
config.equilibrium.clear();
|
||||
double value;
|
||||
std::size_t num;
|
||||
data >> num;
|
||||
for (std::size_t i=0; i < num; ++i) {
|
||||
for (std::size_t i = 0; i < num; ++i) {
|
||||
data >> value;
|
||||
if (data.eof()) break;
|
||||
config.equilibrium.push_back(value);
|
||||
}
|
||||
}
|
||||
|
||||
void TestConfigReader::init_vdwl(const yaml_event_t & event) {
|
||||
void TestConfigReader::init_vdwl(const yaml_event_t &event)
|
||||
{
|
||||
config.init_vdwl = atof((char *)event.data.scalar.value);
|
||||
}
|
||||
|
||||
void TestConfigReader::init_coul(const yaml_event_t & event) {
|
||||
void TestConfigReader::init_coul(const yaml_event_t &event)
|
||||
{
|
||||
config.init_coul = atof((char *)event.data.scalar.value);
|
||||
}
|
||||
|
||||
void TestConfigReader::run_vdwl(const yaml_event_t & event) {
|
||||
void TestConfigReader::run_vdwl(const yaml_event_t &event)
|
||||
{
|
||||
config.run_vdwl = atof((char *)event.data.scalar.value);
|
||||
}
|
||||
|
||||
void TestConfigReader::run_coul(const yaml_event_t & event) {
|
||||
void TestConfigReader::run_coul(const yaml_event_t &event)
|
||||
{
|
||||
config.run_coul = atof((char *)event.data.scalar.value);
|
||||
}
|
||||
|
||||
void TestConfigReader::init_energy(const yaml_event_t & event) {
|
||||
void TestConfigReader::init_energy(const yaml_event_t &event)
|
||||
{
|
||||
config.init_energy = atof((char *)event.data.scalar.value);
|
||||
}
|
||||
|
||||
void TestConfigReader::run_energy(const yaml_event_t & event) {
|
||||
void TestConfigReader::run_energy(const yaml_event_t &event)
|
||||
{
|
||||
config.run_energy = atof((char *)event.data.scalar.value);
|
||||
}
|
||||
|
||||
|
||||
@ -17,37 +17,37 @@
|
||||
#include "yaml_reader.h"
|
||||
|
||||
class TestConfigReader : public YamlReader<TestConfigReader> {
|
||||
TestConfig & config;
|
||||
TestConfig &config;
|
||||
|
||||
public:
|
||||
TestConfigReader(TestConfig & config);
|
||||
TestConfigReader(TestConfig &config);
|
||||
|
||||
void prerequisites(const yaml_event_t & event);
|
||||
void pre_commands(const yaml_event_t & event);
|
||||
void post_commands(const yaml_event_t & event);
|
||||
void lammps_version(const yaml_event_t & event);
|
||||
void date_generated(const yaml_event_t & event);
|
||||
void epsilon(const yaml_event_t & event);
|
||||
void input_file(const yaml_event_t & event);
|
||||
void extract(const yaml_event_t & event);
|
||||
void natoms(const yaml_event_t & event);
|
||||
void init_stress(const yaml_event_t & event);
|
||||
void run_stress(const yaml_event_t & event);
|
||||
void init_forces(const yaml_event_t & event);
|
||||
void run_forces(const yaml_event_t & event);
|
||||
void pair_style(const yaml_event_t & event);
|
||||
void pair_coeff(const yaml_event_t & event);
|
||||
void bond_style(const yaml_event_t & event);
|
||||
void bond_coeff(const yaml_event_t & event);
|
||||
void angle_style(const yaml_event_t & event);
|
||||
void angle_coeff(const yaml_event_t & event);
|
||||
void equilibrium(const yaml_event_t & event);
|
||||
void init_vdwl(const yaml_event_t & event);
|
||||
void init_coul(const yaml_event_t & event);
|
||||
void run_vdwl(const yaml_event_t & event);
|
||||
void run_coul(const yaml_event_t & event);
|
||||
void init_energy(const yaml_event_t & event);
|
||||
void run_energy(const yaml_event_t & event);
|
||||
void prerequisites(const yaml_event_t &event);
|
||||
void pre_commands(const yaml_event_t &event);
|
||||
void post_commands(const yaml_event_t &event);
|
||||
void lammps_version(const yaml_event_t &event);
|
||||
void date_generated(const yaml_event_t &event);
|
||||
void epsilon(const yaml_event_t &event);
|
||||
void input_file(const yaml_event_t &event);
|
||||
void extract(const yaml_event_t &event);
|
||||
void natoms(const yaml_event_t &event);
|
||||
void init_stress(const yaml_event_t &event);
|
||||
void run_stress(const yaml_event_t &event);
|
||||
void init_forces(const yaml_event_t &event);
|
||||
void run_forces(const yaml_event_t &event);
|
||||
void pair_style(const yaml_event_t &event);
|
||||
void pair_coeff(const yaml_event_t &event);
|
||||
void bond_style(const yaml_event_t &event);
|
||||
void bond_coeff(const yaml_event_t &event);
|
||||
void angle_style(const yaml_event_t &event);
|
||||
void angle_coeff(const yaml_event_t &event);
|
||||
void equilibrium(const yaml_event_t &event);
|
||||
void init_vdwl(const yaml_event_t &event);
|
||||
void init_coul(const yaml_event_t &event);
|
||||
void run_vdwl(const yaml_event_t &event);
|
||||
void run_coul(const yaml_event_t &event);
|
||||
void init_energy(const yaml_event_t &event);
|
||||
void run_energy(const yaml_event_t &event);
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
@ -16,16 +16,15 @@
|
||||
#include "test_config_reader.h"
|
||||
#include "gtest/gtest.h"
|
||||
|
||||
#include <mpi.h>
|
||||
#include <cstring>
|
||||
#include <iostream>
|
||||
#include <mpi.h>
|
||||
|
||||
// common read_yaml_file function
|
||||
bool read_yaml_file(const char *infile, TestConfig &config)
|
||||
{
|
||||
auto reader = TestConfigReader(config);
|
||||
if (reader.parse_file(infile))
|
||||
return false;
|
||||
if (reader.parse_file(infile)) return false;
|
||||
|
||||
config.basename = reader.get_basename();
|
||||
return true;
|
||||
@ -76,32 +75,32 @@ int main(int argc, char **argv)
|
||||
return 2;
|
||||
}
|
||||
|
||||
int iarg=2;
|
||||
int iarg = 2;
|
||||
while (iarg < argc) {
|
||||
|
||||
if (strcmp(argv[iarg],"-g") == 0) {
|
||||
if (iarg+1 < argc) {
|
||||
generate_yaml_file(argv[iarg+1], test_config);
|
||||
if (strcmp(argv[iarg], "-g") == 0) {
|
||||
if (iarg + 1 < argc) {
|
||||
generate_yaml_file(argv[iarg + 1], test_config);
|
||||
return 0;
|
||||
} else {
|
||||
usage(std::cerr,argv[0]);
|
||||
usage(std::cerr, argv[0]);
|
||||
return 1;
|
||||
}
|
||||
} else if (strcmp(argv[iarg],"-u") == 0) {
|
||||
} else if (strcmp(argv[iarg], "-u") == 0) {
|
||||
generate_yaml_file(argv[1], test_config);
|
||||
return 0;
|
||||
} else if (strcmp(argv[iarg],"-d") == 0) {
|
||||
if (iarg+1 < argc) {
|
||||
INPUT_FOLDER = argv[iarg+1];
|
||||
} else if (strcmp(argv[iarg], "-d") == 0) {
|
||||
if (iarg + 1 < argc) {
|
||||
INPUT_FOLDER = argv[iarg + 1];
|
||||
iarg += 2;
|
||||
} else {
|
||||
usage(std::cerr,argv[0]);
|
||||
usage(std::cerr, argv[0]);
|
||||
return 1;
|
||||
}
|
||||
} else if (strcmp(argv[iarg],"-s") == 0) {
|
||||
} else if (strcmp(argv[iarg], "-s") == 0) {
|
||||
print_stats = true;
|
||||
++iarg;
|
||||
} else if (strcmp(argv[iarg],"-v") == 0) {
|
||||
} else if (strcmp(argv[iarg], "-v") == 0) {
|
||||
verbose = true;
|
||||
++iarg;
|
||||
} else {
|
||||
|
||||
@ -22,13 +22,13 @@ extern bool print_stats;
|
||||
extern bool verbose;
|
||||
extern std::string INPUT_FOLDER;
|
||||
|
||||
#define EXPECT_FP_LE_WITH_EPS(val1,val2,eps) \
|
||||
do { \
|
||||
const double diff = fabs(val1-val2); \
|
||||
const double div = std::min(fabs(val1),fabs(val2)); \
|
||||
const double err = (div == 0.0) ? diff : diff/div; \
|
||||
stats.add(err); \
|
||||
EXPECT_PRED_FORMAT2(::testing::DoubleLE, err, eps); \
|
||||
#define EXPECT_FP_LE_WITH_EPS(val1, val2, eps) \
|
||||
do { \
|
||||
const double diff = fabs(val1 - val2); \
|
||||
const double div = std::min(fabs(val1), fabs(val2)); \
|
||||
const double err = (div == 0.0) ? diff : diff / div; \
|
||||
stats.add(err); \
|
||||
EXPECT_PRED_FORMAT2(::testing::DoubleLE, err, eps); \
|
||||
} while (0);
|
||||
|
||||
#endif
|
||||
|
||||
@ -17,11 +17,11 @@
|
||||
#include "yaml.h"
|
||||
|
||||
#include <cstdio>
|
||||
#include <iostream>
|
||||
#include <map>
|
||||
#include <string>
|
||||
#include <iostream>
|
||||
|
||||
template<typename ConsumerClass> class YamlReader {
|
||||
template <typename ConsumerClass> class YamlReader {
|
||||
private:
|
||||
enum StateValue {
|
||||
START,
|
||||
@ -37,7 +37,7 @@ private:
|
||||
std::string basename;
|
||||
|
||||
protected:
|
||||
typedef void (ConsumerClass::*EventConsumer)(const yaml_event_t & event);
|
||||
typedef void (ConsumerClass::*EventConsumer)(const yaml_event_t &event);
|
||||
std::map<std::string, EventConsumer> consumers;
|
||||
|
||||
public:
|
||||
@ -46,20 +46,21 @@ public:
|
||||
|
||||
std::string get_basename() const { return basename; }
|
||||
|
||||
int parse_file(const std::string & infile) {
|
||||
int parse_file(const std::string &infile)
|
||||
{
|
||||
basename = infile;
|
||||
std::size_t found = basename.rfind(".yaml");
|
||||
if (found > 0) basename = basename.substr(0,found);
|
||||
if (found > 0) basename = basename.substr(0, found);
|
||||
found = basename.find_last_of("/\\");
|
||||
if (found != std::string::npos) basename = basename.substr(found+1);
|
||||
if (found != std::string::npos) basename = basename.substr(found + 1);
|
||||
|
||||
FILE *fp = fopen(infile.c_str(),"r");
|
||||
FILE *fp = fopen(infile.c_str(), "r");
|
||||
yaml_parser_t parser;
|
||||
yaml_event_t event;
|
||||
|
||||
if (!fp) {
|
||||
std::cerr << "Cannot open yaml file '" << infile
|
||||
<< "': " << strerror(errno) << std::endl;
|
||||
std::cerr << "Cannot open yaml file '" << infile << "': " << strerror(errno)
|
||||
<< std::endl;
|
||||
return 1;
|
||||
}
|
||||
yaml_parser_initialize(&parser);
|
||||
@ -75,9 +76,9 @@ public:
|
||||
}
|
||||
|
||||
if (accepted) {
|
||||
if(!consume_key_value(key, event)) {
|
||||
std::cerr << "Ignoring unknown key/value pair: " << key
|
||||
<< " = " << event.data.scalar.value << std::endl;
|
||||
if (!consume_key_value(key, event)) {
|
||||
std::cerr << "Ignoring unknown key/value pair: " << key << " = "
|
||||
<< event.data.scalar.value << std::endl;
|
||||
}
|
||||
}
|
||||
yaml_event_delete(&event);
|
||||
@ -89,13 +90,14 @@ public:
|
||||
}
|
||||
|
||||
protected:
|
||||
bool consume_key_value(const std::string & key, const yaml_event_t & event) {
|
||||
bool consume_key_value(const std::string &key, const yaml_event_t &event)
|
||||
{
|
||||
auto it = consumers.find(key);
|
||||
ConsumerClass *consumer = dynamic_cast<ConsumerClass*>(this);
|
||||
ConsumerClass *consumer = dynamic_cast<ConsumerClass *>(this);
|
||||
|
||||
if(consumer) {
|
||||
if(it != consumers.end()) {
|
||||
//std::cerr << "Loading: " << key << std::endl;
|
||||
if (consumer) {
|
||||
if (it != consumers.end()) {
|
||||
// std::cerr << "Loading: " << key << std::endl;
|
||||
(consumer->*(it->second))(event);
|
||||
return true;
|
||||
}
|
||||
@ -106,69 +108,68 @@ protected:
|
||||
return false;
|
||||
}
|
||||
|
||||
bool consume_event(yaml_event_t & event) {
|
||||
bool consume_event(yaml_event_t &event)
|
||||
{
|
||||
accepted = false;
|
||||
switch (state) {
|
||||
case START:
|
||||
switch (event.type) {
|
||||
case YAML_MAPPING_START_EVENT:
|
||||
state = ACCEPT_KEY;
|
||||
break;
|
||||
case YAML_SCALAR_EVENT:
|
||||
case YAML_SEQUENCE_START_EVENT:
|
||||
state = ERROR;
|
||||
break;
|
||||
case YAML_STREAM_END_EVENT:
|
||||
state = STOP;
|
||||
break;
|
||||
case YAML_STREAM_START_EVENT:
|
||||
case YAML_DOCUMENT_START_EVENT:
|
||||
case YAML_DOCUMENT_END_EVENT:
|
||||
// ignore
|
||||
break;
|
||||
default:
|
||||
std::cerr << "UNHANDLED YAML EVENT: " << event.type << std::endl;
|
||||
state = ERROR;
|
||||
break;
|
||||
}
|
||||
break;
|
||||
case START:
|
||||
switch (event.type) {
|
||||
case YAML_MAPPING_START_EVENT:
|
||||
state = ACCEPT_KEY;
|
||||
break;
|
||||
case YAML_SCALAR_EVENT:
|
||||
case YAML_SEQUENCE_START_EVENT:
|
||||
state = ERROR;
|
||||
break;
|
||||
case YAML_STREAM_END_EVENT:
|
||||
state = STOP;
|
||||
break;
|
||||
case YAML_STREAM_START_EVENT:
|
||||
case YAML_DOCUMENT_START_EVENT:
|
||||
case YAML_DOCUMENT_END_EVENT:
|
||||
// ignore
|
||||
break;
|
||||
default:
|
||||
std::cerr << "UNHANDLED YAML EVENT: " << event.type << std::endl;
|
||||
state = ERROR;
|
||||
break;
|
||||
}
|
||||
break;
|
||||
|
||||
case ACCEPT_KEY:
|
||||
switch (event.type) {
|
||||
case YAML_SCALAR_EVENT:
|
||||
key = (char *) event.data.scalar.value;
|
||||
state = ACCEPT_VALUE;
|
||||
break;
|
||||
case YAML_MAPPING_END_EVENT:
|
||||
state = STOP;
|
||||
break;
|
||||
default:
|
||||
std::cerr << "UNHANDLED YAML EVENT (key): " << event.type
|
||||
<< "\nVALUE: " << event.data.scalar.value
|
||||
<< std::endl;
|
||||
state = ERROR;
|
||||
break;
|
||||
}
|
||||
break;
|
||||
case ACCEPT_KEY:
|
||||
switch (event.type) {
|
||||
case YAML_SCALAR_EVENT:
|
||||
key = (char *)event.data.scalar.value;
|
||||
state = ACCEPT_VALUE;
|
||||
break;
|
||||
case YAML_MAPPING_END_EVENT:
|
||||
state = STOP;
|
||||
break;
|
||||
default:
|
||||
std::cerr << "UNHANDLED YAML EVENT (key): " << event.type
|
||||
<< "\nVALUE: " << event.data.scalar.value << std::endl;
|
||||
state = ERROR;
|
||||
break;
|
||||
}
|
||||
break;
|
||||
|
||||
case ACCEPT_VALUE:
|
||||
switch (event.type) {
|
||||
case YAML_SCALAR_EVENT:
|
||||
accepted = true;
|
||||
state = ACCEPT_KEY;
|
||||
break;
|
||||
default:
|
||||
std::cerr << "UNHANDLED YAML EVENT (value): " << event.type
|
||||
<< "\nVALUE: " << event.data.scalar.value
|
||||
<< std::endl;
|
||||
state = ERROR;
|
||||
break;
|
||||
}
|
||||
break;
|
||||
case ACCEPT_VALUE:
|
||||
switch (event.type) {
|
||||
case YAML_SCALAR_EVENT:
|
||||
accepted = true;
|
||||
state = ACCEPT_KEY;
|
||||
break;
|
||||
default:
|
||||
std::cerr << "UNHANDLED YAML EVENT (value): " << event.type
|
||||
<< "\nVALUE: " << event.data.scalar.value << std::endl;
|
||||
state = ERROR;
|
||||
break;
|
||||
}
|
||||
break;
|
||||
|
||||
case ERROR:
|
||||
case STOP:
|
||||
break;
|
||||
case ERROR:
|
||||
case STOP:
|
||||
break;
|
||||
}
|
||||
return (state != ERROR);
|
||||
}
|
||||
|
||||
@ -14,10 +14,11 @@
|
||||
#include "yaml_writer.h"
|
||||
#include "yaml.h"
|
||||
|
||||
#include <string>
|
||||
#include <cstdio>
|
||||
#include <string>
|
||||
|
||||
YamlWriter::YamlWriter(const char * outfile) {
|
||||
YamlWriter::YamlWriter(const char *outfile)
|
||||
{
|
||||
yaml_emitter_initialize(&emitter);
|
||||
fp = fopen(outfile, "w");
|
||||
if (!fp) {
|
||||
@ -31,13 +32,13 @@ YamlWriter::YamlWriter(const char * outfile) {
|
||||
yaml_emitter_emit(&emitter, &event);
|
||||
yaml_document_start_event_initialize(&event, NULL, NULL, NULL, 0);
|
||||
yaml_emitter_emit(&emitter, &event);
|
||||
yaml_mapping_start_event_initialize(&event, NULL,
|
||||
(yaml_char_t *)YAML_MAP_TAG,
|
||||
1, YAML_ANY_MAPPING_STYLE);
|
||||
yaml_mapping_start_event_initialize(&event, NULL, (yaml_char_t *)YAML_MAP_TAG, 1,
|
||||
YAML_ANY_MAPPING_STYLE);
|
||||
yaml_emitter_emit(&emitter, &event);
|
||||
}
|
||||
|
||||
YamlWriter::~YamlWriter() {
|
||||
YamlWriter::~YamlWriter()
|
||||
{
|
||||
yaml_mapping_end_event_initialize(&event);
|
||||
yaml_emitter_emit(&emitter, &event);
|
||||
yaml_document_end_event_initialize(&event, 0);
|
||||
@ -48,84 +49,65 @@ YamlWriter::~YamlWriter() {
|
||||
fclose(fp);
|
||||
}
|
||||
|
||||
void YamlWriter::emit(const std::string &key, const double value) {
|
||||
yaml_scalar_event_initialize(&event, NULL,
|
||||
(yaml_char_t *)YAML_STR_TAG,
|
||||
(yaml_char_t *) key.c_str(),
|
||||
key.size(), 1, 0,
|
||||
void YamlWriter::emit(const std::string &key, const double value)
|
||||
{
|
||||
yaml_scalar_event_initialize(&event, NULL, (yaml_char_t *)YAML_STR_TAG,
|
||||
(yaml_char_t *)key.c_str(), key.size(), 1, 0,
|
||||
YAML_PLAIN_SCALAR_STYLE);
|
||||
yaml_emitter_emit(&emitter, &event);
|
||||
char buf[256];
|
||||
snprintf(buf,256,"%.15g",value);
|
||||
yaml_scalar_event_initialize(&event, NULL,
|
||||
(yaml_char_t *)YAML_STR_TAG,
|
||||
(yaml_char_t *)buf,
|
||||
strlen(buf), 1, 0,
|
||||
YAML_PLAIN_SCALAR_STYLE);
|
||||
snprintf(buf, 256, "%.15g", value);
|
||||
yaml_scalar_event_initialize(&event, NULL, (yaml_char_t *)YAML_STR_TAG, (yaml_char_t *)buf,
|
||||
strlen(buf), 1, 0, YAML_PLAIN_SCALAR_STYLE);
|
||||
yaml_emitter_emit(&emitter, &event);
|
||||
}
|
||||
|
||||
void YamlWriter::emit(const std::string &key, const long value) {
|
||||
yaml_scalar_event_initialize(&event, NULL,
|
||||
(yaml_char_t *)YAML_STR_TAG,
|
||||
(yaml_char_t *) key.c_str(),
|
||||
key.size(), 1, 0,
|
||||
void YamlWriter::emit(const std::string &key, const long value)
|
||||
{
|
||||
yaml_scalar_event_initialize(&event, NULL, (yaml_char_t *)YAML_STR_TAG,
|
||||
(yaml_char_t *)key.c_str(), key.size(), 1, 0,
|
||||
YAML_PLAIN_SCALAR_STYLE);
|
||||
yaml_emitter_emit(&emitter, &event);
|
||||
char buf[256];
|
||||
snprintf(buf,256,"%ld",value);
|
||||
yaml_scalar_event_initialize(&event, NULL,
|
||||
(yaml_char_t *)YAML_STR_TAG,
|
||||
(yaml_char_t *)buf,
|
||||
strlen(buf), 1, 0,
|
||||
YAML_PLAIN_SCALAR_STYLE);
|
||||
snprintf(buf, 256, "%ld", value);
|
||||
yaml_scalar_event_initialize(&event, NULL, (yaml_char_t *)YAML_STR_TAG, (yaml_char_t *)buf,
|
||||
strlen(buf), 1, 0, YAML_PLAIN_SCALAR_STYLE);
|
||||
yaml_emitter_emit(&emitter, &event);
|
||||
}
|
||||
|
||||
void YamlWriter::emit(const std::string &key, const int value) {
|
||||
yaml_scalar_event_initialize(&event, NULL,
|
||||
(yaml_char_t *)YAML_STR_TAG,
|
||||
(yaml_char_t *) key.c_str(),
|
||||
key.size(), 1, 0,
|
||||
void YamlWriter::emit(const std::string &key, const int value)
|
||||
{
|
||||
yaml_scalar_event_initialize(&event, NULL, (yaml_char_t *)YAML_STR_TAG,
|
||||
(yaml_char_t *)key.c_str(), key.size(), 1, 0,
|
||||
YAML_PLAIN_SCALAR_STYLE);
|
||||
yaml_emitter_emit(&emitter, &event);
|
||||
char buf[256];
|
||||
snprintf(buf,256,"%d",value);
|
||||
yaml_scalar_event_initialize(&event, NULL,
|
||||
(yaml_char_t *)YAML_STR_TAG,
|
||||
(yaml_char_t *)buf,
|
||||
strlen(buf), 1, 0,
|
||||
YAML_PLAIN_SCALAR_STYLE);
|
||||
snprintf(buf, 256, "%d", value);
|
||||
yaml_scalar_event_initialize(&event, NULL, (yaml_char_t *)YAML_STR_TAG, (yaml_char_t *)buf,
|
||||
strlen(buf), 1, 0, YAML_PLAIN_SCALAR_STYLE);
|
||||
yaml_emitter_emit(&emitter, &event);
|
||||
}
|
||||
|
||||
void YamlWriter::emit(const std::string &key, const std::string &value)
|
||||
{
|
||||
yaml_scalar_event_initialize(&event, NULL,
|
||||
(yaml_char_t *)YAML_STR_TAG,
|
||||
(yaml_char_t *) key.c_str(),
|
||||
key.size(), 1, 0,
|
||||
yaml_scalar_event_initialize(&event, NULL, (yaml_char_t *)YAML_STR_TAG,
|
||||
(yaml_char_t *)key.c_str(), key.size(), 1, 0,
|
||||
YAML_PLAIN_SCALAR_STYLE);
|
||||
yaml_emitter_emit(&emitter, &event);
|
||||
yaml_scalar_event_initialize(&event, NULL,
|
||||
(yaml_char_t *)YAML_STR_TAG,
|
||||
(yaml_char_t *)value.c_str(),
|
||||
value.size(), 1, 0,
|
||||
yaml_scalar_event_initialize(&event, NULL, (yaml_char_t *)YAML_STR_TAG,
|
||||
(yaml_char_t *)value.c_str(), value.size(), 1, 0,
|
||||
YAML_PLAIN_SCALAR_STYLE);
|
||||
yaml_emitter_emit(&emitter, &event);
|
||||
}
|
||||
|
||||
void YamlWriter::emit_block(const std::string &key, const std::string &value) {
|
||||
yaml_scalar_event_initialize(&event, NULL,
|
||||
(yaml_char_t *)YAML_STR_TAG,
|
||||
(yaml_char_t *) key.c_str(),
|
||||
key.size(), 1, 0,
|
||||
void YamlWriter::emit_block(const std::string &key, const std::string &value)
|
||||
{
|
||||
yaml_scalar_event_initialize(&event, NULL, (yaml_char_t *)YAML_STR_TAG,
|
||||
(yaml_char_t *)key.c_str(), key.size(), 1, 0,
|
||||
YAML_PLAIN_SCALAR_STYLE);
|
||||
yaml_emitter_emit(&emitter, &event);
|
||||
yaml_scalar_event_initialize(&event, NULL,
|
||||
(yaml_char_t *)YAML_STR_TAG,
|
||||
(yaml_char_t *)value.c_str(),
|
||||
value.size(), 1, 0,
|
||||
yaml_scalar_event_initialize(&event, NULL, (yaml_char_t *)YAML_STR_TAG,
|
||||
(yaml_char_t *)value.c_str(), value.size(), 1, 0,
|
||||
YAML_LITERAL_SCALAR_STYLE);
|
||||
yaml_emitter_emit(&emitter, &event);
|
||||
}
|
||||
|
||||
@ -20,7 +20,7 @@
|
||||
|
||||
class YamlWriter {
|
||||
public:
|
||||
YamlWriter(const char * outfile);
|
||||
YamlWriter(const char *outfile);
|
||||
virtual ~YamlWriter();
|
||||
|
||||
// emitters
|
||||
@ -33,11 +33,11 @@ public:
|
||||
private:
|
||||
FILE *fp;
|
||||
yaml_emitter_t emitter;
|
||||
yaml_event_t event;
|
||||
yaml_event_t event;
|
||||
|
||||
private:
|
||||
YamlWriter() {};
|
||||
YamlWriter(const YamlWriter &) {};
|
||||
YamlWriter(){};
|
||||
YamlWriter(const YamlWriter &){};
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user