Skip to content

Commit

Permalink
fix the case both symmetry and symmetry_prec increasing case in cell-…
Browse files Browse the repository at this point in the history
…relax
  • Loading branch information
maki49 committed Jul 9, 2023
1 parent c537a0f commit ed83a00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/module_cell/module_symmetry/symmetry.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ void Symmetry::analy_sys(const UnitCell &ucell, std::ofstream &ofs_running)
ofs_running << "WARNING: current `symmetry_prec` is too small to give the right number of symmtry operations." << std::endl;
ofs_running << " Changed `symmetry_prec` to " << epsilon <<"." << std::endl;
}
else if (tmp_nrotk > this->nrotk)
if (tmp_nrotk > this->nrotk)
{
this->nrotk = tmp_nrotk;
ofs_running << "Find new symmtry operations during cell-relax." << std::endl;
Expand Down

0 comments on commit ed83a00

Please sign in to comment.