Dear all,
I was using freud to calculate the neighbors of my particles. Since I did not want o get periodic neighbors I used
box.periodic_x=False
box.periodic_y=False
box.periodic_z=False
and then did
aq = freud.locality.AABBQuery(box,poly_pos)
query_result = aq.query(poly_pos, dict(r_max = 0.89, exclude_ii = True))
nlist = query_result.toNeighborList().
This was working fine in our local cluster. But in our university cluster the same code shows an error as follows.
" nlist = query_result.toNeighborList()
File "locality.pyx", line 218, in freud.locality.NeighborQueryResult.toNeighborList"
Do you guys know what could cause it? Is it the freud version in these two clusters?
Regards,
Jude