Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 1 addition & 6 deletions mesa/space.py
Original file line number Diff line number Diff line change
Expand Up @@ -600,7 +600,7 @@ class ContinuousSpace:
""" Continuous space where each agent can have an arbitrary position.

Assumes that all agents are point objects, and have a pos property storing
their position as an (x, y) tuple. This class uses a MultiGrid internally
their position as an (x, y) tuple. This class uses a numpy array internally
to store agent objects, to speed up neighborhood lookups.

"""
Expand All @@ -615,11 +615,6 @@ def __init__(self, x_max, y_max, torus, x_min=0, y_min=0):
x_min, y_min: (default 0) If provided, set the minimum x and y
coordinates for the space. Below them, values loop to
the other edge (if torus=True) or raise an exception.
grid_width, _height: (default 100) Determine the size of the
internal storage grid. More cells will slow
down movement, but speed up neighbor lookup.
Probably only fiddle with this if one or the
other is impacting your model's performance.

"""
self.x_min = x_min
Expand Down