Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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