Skip to content

Commit

Permalink
delete redundant semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
Yi-FanLi committed Sep 14, 2023
1 parent 11b5afb commit 431dc9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/lmp/pair_deepmd.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -939,7 +939,7 @@ void PairDeepMD::settings(int narg, char **arg) {
numb_types_spin = deep_pot_model_devi.numb_types_spin();
dim_fparam = deep_pot_model_devi.dim_fparam();
dim_aparam = deep_pot_model_devi.dim_aparam();
assert(cutoff == deep_pot.cutoff() * dist_unit_cvt_factor;);
assert(cutoff == deep_pot.cutoff() * dist_unit_cvt_factor);
assert(numb_types == deep_pot.numb_types());
assert(numb_types_spin == deep_pot.numb_types_spin());
assert(dim_fparam == deep_pot.dim_fparam());
Expand Down

0 comments on commit 431dc9a

Please sign in to comment.