Skip to content

Commit 046a74f

Browse files
Merge pull request #1249 from CalCraven/main
Remove experimental feature tag for freud generate_bonds
2 parents 9a42a16 + 6758a4f commit 046a74f

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

mbuild/compound.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
from mbuild.coordinate_transform import _rotate, _translate
2626
from mbuild.exceptions import MBuildError
2727
from mbuild.periodic_kdtree import PeriodicKDTree
28-
from mbuild.utils.decorators import experimental_feature
2928
from mbuild.utils.io import import_, run_from_ipython
3029
from mbuild.utils.jsutils import overwrite_nglview_default
3130

@@ -1150,7 +1149,6 @@ def generate_bonds(self, name_a, name_b, dmin, dmax):
11501149
self.add_bond((p1, p2))
11511150
added_bonds.append(bond_tuple)
11521151

1153-
@experimental_feature()
11541152
def freud_generate_bonds(self, name_a, name_b, dmin, dmax):
11551153
"""Add Bonds between all pairs of types a/b within [dmin, dmax].
11561154
@@ -1164,11 +1162,6 @@ def freud_generate_bonds(self, name_a, name_b, dmin, dmax):
11641162
The minimum distance (in nm) between Particles for considering a bond
11651163
dmax : float
11661164
The maximum distance (in nm) between Particles for considering a bond
1167-
1168-
Notes
1169-
-----
1170-
This is an experimental feature and some behavior might change out of step of a standard development release.
1171-
11721165
"""
11731166
freud = import_("freud")
11741167
moved_positions, freud_box = self.to_freud()

0 commit comments

Comments
 (0)