-
Notifications
You must be signed in to change notification settings - Fork 932
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for Observables to MESA (#2291)
- Loading branch information
Showing
7 changed files
with
944 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,6 @@ coverage: | |
|
||
ignore: | ||
- "benchmarks/**" | ||
- "mesa/experimental/**" | ||
- "mesa/visualization/**" | ||
|
||
comment: off |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
"""Experimental init.""" | ||
|
||
from mesa.experimental import cell_space, devs | ||
from mesa.experimental import cell_space, devs, mesa_signals | ||
|
||
__all__ = ["cell_space", "devs"] | ||
__all__ = ["cell_space", "devs", "mesa_signals"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
"""Functionality for Observables.""" | ||
|
||
from .mesa_signal import All, Computable, Computed, HasObservables, Observable | ||
from .observable_collections import ObservableList | ||
|
||
__all__ = [ | ||
"Observable", | ||
"ObservableList", | ||
"HasObservables", | ||
"All", | ||
"Computable", | ||
"Computed", | ||
] |
Oops, something went wrong.