Merge branch 'develop' into modify-fix-compute-accessors

# Conflicts:
#	src/PLUGIN/plugin.cpp
This commit is contained in:
Axel Kohlmeyer
2021-10-27 21:14:05 -04:00
171 changed files with 1101 additions and 900 deletions

View File

@ -2239,8 +2239,7 @@ double FixBondReact::custom_constraint(std::string varstr)
}
evlstr.push_back(varstr.substr(prev3+1));
for (int i = 0; i < evlstr.size(); i++)
evlcat += evlstr[i];
for (auto & evl : evlstr) evlcat += evl;
char *cstr = utils::strdup(evlcat);
val = input->variable->compute_equal(cstr);
@ -3763,7 +3762,7 @@ void FixBondReact::read(int myrxn)
// stop when read an unrecognized line
ncreate = 0;
while (1) {
while (true) {
readline(line);