Skip to content

Commit

Permalink
Fixes #499 grid size issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
jackiekazil committed May 17, 2018
1 parent 644a992 commit 1eb297e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/epstein_civil_violence/civil_violence/server.py
Expand Up @@ -43,6 +43,6 @@ def citizen_cop_portrayal(agent):
legitimacy=.8,
max_jail_term=1000)

canvas_element = CanvasGrid(citizen_cop_portrayal, 40, 40, 500, 500)
canvas_element = CanvasGrid(citizen_cop_portrayal, 40, 40, 480, 480)
server = ModularServer(CivilViolenceModel, [canvas_element],
"Epstein Civil Violence", model_params)

0 comments on commit 1eb297e

Please sign in to comment.