diff --git a/src/diffpy/structure/symmetryutilities.py b/src/diffpy/structure/symmetryutilities.py index 5e744fb..63ef5f1 100644 --- a/src/diffpy/structure/symmetryutilities.py +++ b/src/diffpy/structure/symmetryutilities.py @@ -601,7 +601,7 @@ def __init__( self.pparameters = [] self.Uparameters = [] # fill in the values - sites, ops, mult = expandPosition(spacegroup, xyz, sgoffset, eps) + sites, ops, mult = expand_position(spacegroup, xyz, sgoffset, eps) invariants = _find_invariants(ops) # shift self.xyz exactly to the special position if mult > 1: @@ -612,7 +612,7 @@ def __init__( if numpy.any(dxyz != 0.0): self.xyz = xyz + dxyz self.xyz[numpy.fabs(self.xyz) < self.eps] = 0.0 - sites, ops, mult = expandPosition(spacegroup, self.xyz, self.sgoffset, eps) + sites, ops, mult = expand_position(spacegroup, self.xyz, self.sgoffset, eps) invariants = _find_invariants(ops) # self.xyz, sites, ops are all adjusted here self.eqxyz = sites