This commit is contained in:
Axel Kohlmeyer
2022-10-16 16:56:29 -04:00
parent bf8a9d07a7
commit 3a8abecd68
2 changed files with 2 additions and 2 deletions

View File

@ -2470,7 +2470,7 @@ void Atom::setup_sort_bins()
/* ---------------------------------------------------------------------- /* ----------------------------------------------------------------------
register a callback to a fix so it can manage atom-based arrays register a callback to a fix so it can manage atom-based arrays
happens when fix is created happens when fix is created
flag = 0 for grow, 1 for restart, 2 for border comm flag = Atom::GROW for grow, Atom::RESTART for restart, Atom::BORDER for border comm
------------------------------------------------------------------------- */ ------------------------------------------------------------------------- */
void Atom::add_callback(int flag) void Atom::add_callback(int flag)

View File

@ -1509,7 +1509,7 @@ void Input::dimension()
// must reset default extra_dof of all computes // must reset default extra_dof of all computes
// since some were created before dimension command is encountered // since some were created before dimension command is encountered
for (auto &c : modify->compute_list()) c->reset_extra_dof(); for (auto &c : modify->get_compute_list()) c->reset_extra_dof();
} }
/* ---------------------------------------------------------------------- */ /* ---------------------------------------------------------------------- */