remove debug code

This commit is contained in:
Axel Kohlmeyer
2020-05-29 08:14:56 -04:00
parent 797ba373c4
commit 7d62fd5106

View File

@ -216,9 +216,7 @@ void TestConfigReader::equilibrium(const yaml_event_t & event) {
while (found != std::string::npos) {
double value = atof(vals.substr(0,found).c_str());
config.equilibrium.push_back(value);
printf("vals=%s ->",vals.c_str());
vals = vals.substr(found+1);
printf("%s\n",vals.c_str());
found = vals.find_first_of(" \t");
}
}