Skip to content

Commit

Permalink
core: remove angle dist leftovers.
Browse files Browse the repository at this point in the history
  • Loading branch information
KaiSzuttor committed Oct 26, 2018
1 parent 117dd42 commit 68fe771
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 8 deletions.
3 changes: 0 additions & 3 deletions src/core/bonded_interactions/bonded_interaction_data.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,6 @@ enum BondedInteraction {
BONDED_IA_RIGID_BOND,
/** Type of a virtual bond*/
BONDED_IA_VIRTUAL_BOND,
/** Type of bonded interaction is a bond angle -- constraint distance
potential. */
BONDED_IA_ANGLEDIST,
/** Type of bonded interaction is a bond angle cosine potential. */
BONDED_IA_ANGLE_HARMONIC,
/** Type of bonded interaction is a bond angle cosine potential. */
Expand Down
4 changes: 0 additions & 4 deletions src/core/pressure_inline.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -188,10 +188,6 @@ inline void calc_bonded_force(Particle *p1, Particle *p2,
(*i)++;
force[0] = force[1] = force[2] = 0;
break;
case BONDED_IA_ANGLEDIST:
(*i)++;
force[0] = force[1] = force[2] = 0;
break;
case BONDED_IA_DIHEDRAL:
(*i) += 2;
force[0] = force[1] = force[2] = 0;
Expand Down
1 change: 0 additions & 1 deletion src/python/espressomd/interactions.pxd
Original file line number Diff line number Diff line change
Expand Up @@ -579,7 +579,6 @@ cdef extern from "bonded_interactions/bonded_interaction_data.hpp":
BONDED_IA_SUBT_LJ,
BONDED_IA_RIGID_BOND,
BONDED_IA_VIRTUAL_BOND,
BONDED_IA_ANGLEDIST,
BONDED_IA_ANGLE_HARMONIC,
BONDED_IA_ANGLE_COSINE,
BONDED_IA_ANGLE_COSSQUARE,
Expand Down

0 comments on commit 68fe771

Please sign in to comment.