Skip to content

Commit 25d042f

Browse files
committed
v1.0.0rc11
1 parent f49be3a commit 25d042f

30 files changed

+5896
-404
lines changed

CHANGELOG.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ All notable changes to this project will be documented in this file.
33

44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
55

6-
## [1.0 UNRELEASED]
6+
## [1.0.0 UNRELEASED]
77

8-
Version 1.0 introduced multiple changes, especially on the `Simulation` class and anything related to how configuration is handled.
8+
Version 1.0 will introduce multiple changes, especially on the `Simulation` class and anything related to how configuration is handled.
99
For an explanation of the general changes in version 1.0, please refer to the file `docs/notes_v1.0.rst`.
1010

1111
### Added
@@ -19,7 +19,6 @@ For an explanation of the general changes in version 1.0, please refer to the fi
1919
* The `agent.after` and `agent.at` methods, to avoid having to return a time manually.
2020
### Changed
2121
* Configuration schema (`Simulation`) is very simplified. All simulations should be checked
22-
* Agents that wish to
2322
* Model / environment variables are expected (but not enforced) to be a single value. This is done to more closely align with mesa
2423
* `Exporter.iteration_end` now takes two parameters: `env` (same as before) and `params` (specific parameters for this environment). We considered including a `parameters` attribute in the environment, but this would not be compatible with mesa.
2524
* `num_trials` renamed to `iterations`

benchmarks/virusonnetwork/soil_states.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def init(self):
2727

2828
# Infect some nodes
2929
infected_nodes = self.random.sample(list(self.G), self.initial_outbreak_size)
30-
for a in self.agents(node_id=infected_nodes):
30+
for a in self.get_agents(node_id=infected_nodes):
3131
a.set_state(VirusAgent.infected)
3232
assert self.number_infected == self.initial_outbreak_size
3333

benchmarks/virusonnetwork/soil_step.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def init(self):
3333

3434
# Infect some nodes
3535
infected_nodes = self.random.sample(list(self.G), self.initial_outbreak_size)
36-
for a in self.agents(node_id=infected_nodes):
36+
for a in self.get_agents(node_id=infected_nodes):
3737
a.status = State.INFECTED
3838
assert self.number_infected == self.initial_outbreak_size
3939

0 commit comments

Comments
 (0)