-
Notifications
You must be signed in to change notification settings - Fork 939
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
make examples portable, skip basic for importable examples
- Loading branch information
Showing
7 changed files
with
13 additions
and
13 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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
from mesa.examples.basic.boid_flockers.model import BoidFlockers | ||
from mesa.examples.basic.boltzmann_wealth_model.model import BoltzmannWealthModel | ||
from mesa.examples.basic.conways_game_of_life.model import ConwaysGameOfLife | ||
from mesa.examples.basic.schelling.model import Schelling | ||
from mesa.examples.basic.virus_on_network.model import VirusOnNetwork | ||
|
||
__all__ = [ | ||
"BoidFlockers", | ||
"BoltzmannWealthModel", | ||
"ConwaysGameOfLife", | ||
"Schelling", | ||
"VirusOnNetwork", | ||
] |
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,13 +0,0 @@ | ||
from .boid_flockers.model import BoidFlockers | ||
from .boltzmann_wealth_model.model import BoltzmannWealthModel | ||
from .conways_game_of_life.model import ConwaysGameOfLife | ||
from .schelling.model import Schelling | ||
from .virus_on_network.model import VirusOnNetwork | ||
|
||
__all__ = [ | ||
"BoidFlockers", | ||
"BoltzmannWealthModel", | ||
"ConwaysGameOfLife", | ||
"Schelling", | ||
"VirusOnNetwork", | ||
] | ||
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.