Skip to content

Commit

Permalink
some additional minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
quaquel committed Sep 18, 2024
1 parent 3f7de10 commit 0bc1b06
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 9 deletions.
4 changes: 2 additions & 2 deletions mesa/agent.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Agentt related classes
"""Agent related classes
Core Objects: Agent
Core Objects: Agent and AgentSet.
"""

# Mypy; for the `|` operator purpose
Expand Down
13 changes: 6 additions & 7 deletions mesa/space.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,12 @@
Objects used to add a spatial component to a model.
Grid: base grid, which creates a rectangular grid.
SingleGrid: extension to Grid which strictly enforces one agent per cell.
MultiGrid: extension to Grid where each cell can contain a set of agents.
HexGrid: extension to Grid to handle hexagonal neighbors.
ContinuousSpace: a two-dimensional space where each agent has an arbitrary
position of `float`'s.
NetworkGrid: a network where each node contains zero or more agents.
* Grid: base grid, which creates a rectangular grid.
* SingleGrid: extension to Grid which strictly enforces one agent per cell.
* MultiGrid: extension to Grid where each cell can contain a set of agents.
* HexGrid: extension to Grid to handle hexagonal neighbors.
* ContinuousSpace: a two-dimensional space where each agent has an arbitrary position of `float`'s.
* NetworkGrid: a network where each node contains zero or more agents.
"""

# Mypy; for the `|` operator purpose
Expand Down

0 comments on commit 0bc1b06

Please sign in to comment.