Releases: licit-lab/symupy
Releases · licit-lab/symupy
v0.2.2
Bump version: 0.2.1 → 0.2.2
v0.2.1
Bump version: 0.2.0 → 0.2.1
v0.2.0
🧰 Adding dev tools
Symupy API Package
Package as a standard python library. Simluator build is not distributed in this release, hence tests are can only be executed locally.
Symupy API Stable RC
This first pre-release stabilizes the API to:
- Run a simulation in one single instruction via
simulator.run_simulation()
- Step by step via a content manager
with simulator as s:
while s.do_next:
step = s.run_step()
- Drive a vehicle within the network via
simulator.drive_vehicle()
- Create vehicles on a given network via
simulator.create_vehicle()
A new script has been proposed to address #7. The solution is for now only operating for MacOS
SymuVia execution from Python
This first pre-release stabilizes the API to:
- Run a simulation in one single instruction via
simulator.run_simulation()
- Step by step via a content manager
with simulator as s:
while s.do_next:
step = s.run_step()
- Drive a vehicle within the network via
simulator.drive_vehicle()
- Create vehicles on a given network via
simulator.create_vehicle()
A new script has been proposed to address #7. The solution is for now only operating for MacOS