Skip to content

Releases: licit-lab/symupy

v0.2.2

25 Mar 14:16
Compare
Choose a tag to compare
Bump version: 0.2.1 → 0.2.2

v0.2.1

19 Mar 10:22
Compare
Choose a tag to compare
Bump version: 0.2.0 → 0.2.1

v0.2.0

11 Mar 10:08
Compare
Choose a tag to compare
🧰 Adding dev tools

Symupy API Package

10 Jul 09:24
Compare
Choose a tag to compare

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

03 Jun 13:29
429c462
Compare
Choose a tag to compare
Symupy API Stable RC Pre-release
Pre-release

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

03 Jun 16:54
Compare
Choose a tag to compare
Pre-release

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