https://github.com/adamlm/simplesim
A simple and generic simulation environment
https://github.com/adamlm/simplesim
easy-to-use generic quick simple simulation simulation-environment simulation-framework
Last synced: 5 months ago
JSON representation
A simple and generic simulation environment
- Host: GitHub
- URL: https://github.com/adamlm/simplesim
- Owner: adamlm
- License: mit
- Created: 2020-04-24T20:39:32.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-12-19T16:54:31.000Z (about 5 years ago)
- Last Synced: 2023-12-20T08:01:14.487Z (about 2 years ago)
- Topics: easy-to-use, generic, quick, simple, simulation, simulation-environment, simulation-framework
- Language: Python
- Size: 16.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README

[](https://codecov.io/gh/MeelonUsk/simplesim)
# `simplesim` package
This package is a simple and general framework for creating a simulation
environment. `simplesim` uses the observer design pattern that allows arbitrary
objects to be included into the simulation. At each update, `simplesim` notifies
the observers of the new simulation time. The observers can do what they want
with that information.
`simplesim` is designed to easily be extended. The only requirement is that
custom objects must implement the observer interface defined in the package.