Commits on Source (35)
-
Dorian Weber authored53b9db55
-
Dorian Weber authored
Restructured some of the files in order to implement additional examples, implemented the car ferry scenario and added the ability to wait for the termination of two competing futures, enabling timeouts.
60746d57 -
Dorian Weber authorede63c6b03
-
Dorian Weber authored
Implemented the Ferry and Dining Philosopher examples as well as benchmarks. Added Select and Control expressions to the library.
89394b9c -
Dorian Weber authored008f1cda
-
Dorian Weber authored53fe48bf
-
Dorian Weber authored7c9ebb55
-
Dorian Weber authored7d8b078a
-
Dorian Weber authored796bf80b
-
Dorian Weber authored8861aaac
-
Dorian Weber authored13adbea8
-
Dorian Weber authored0ef0e203
-
Dorian Weber authored1ad5c015
-
Dorian Weber authoredf148ed3e
-
Dorian Weber authored0c119827
-
Dorian Weber authored602673b2
-
Dorian Weber authored
Improved the benchmarking logic: best version of SLX is not automatically detected before benchmarking and benchmark works even if SLX doesn't exist or ODEMx couldn't successfully be compiled.
b6603872 -
Dorian Weber authored8d922d13
-
Dorian Weber authoredb039b6ef
-
Dorian Weber authoredb0324f24
-
Dorian Weber authored6c6738df
-
Dorian Weber authored6eabbd0e
-
Dorian Weber authored6a862d99
-
Dorian Weber authored3795a233
-
c9a9dfb0
-
Dorian Weber authored
possibly sound See merge request !1
7095cd88 -
Dorian Weber authored
Refactoring of unrelated fields in the Calendar into the Simulator, documentation, some performance improvements, and renaming of some structures to bring them closer to ODEM-rs.
4f269b7c -
Dorian Weber authored3c5abb7e
-
Dorian Weber authored6b98992a
-
Dorian Weber authored3e889abf
-
Dorian Weber authoredb25a05d6
-
Dorian Weber authoredf565b934
-
Dorian Weber authored6da91333
-
Dorian Weber authored
Bumped the Rust edition to 2024, removed all benchmark code as well as associated files and dependencies.
9999e61d -
Dorian Weber authored11e245f4
Showing
- .gitignore 1 addition, 0 deletions.gitignore
- Cargo.lock 103 additions, 524 deletionsCargo.lock
- Cargo.toml 14 additions, 12 deletionsCargo.toml
- LICENSE 14 additions, 0 deletionsLICENSE
- README.md 68 additions, 38 deletionsREADME.md
- benches/barbershop.rs 0 additions, 100 deletionsbenches/barbershop.rs
- c/Makefile 25 additions, 0 deletionsc/Makefile
- c/coroutines.c 187 additions, 0 deletionsc/coroutines.c
- examples/barbershop.rs 117 additions, 0 deletionsexamples/barbershop.rs
- examples/ferry.rs 229 additions, 0 deletionsexamples/ferry.rs
- examples/philosophers.rs 201 additions, 0 deletionsexamples/philosophers.rs
- results/barbershop.lis 0 additions, 13 deletionsresults/barbershop.lis
- results/barbershop/100000/base/benchmark.json 0 additions, 1 deletionresults/barbershop/100000/base/benchmark.json
- results/barbershop/100000/base/estimates.json 0 additions, 1 deletionresults/barbershop/100000/base/estimates.json
- results/barbershop/100000/base/raw.csv 0 additions, 101 deletionsresults/barbershop/100000/base/raw.csv
- results/barbershop/100000/base/sample.json 0 additions, 1 deletionresults/barbershop/100000/base/sample.json
- results/barbershop/100000/base/tukey.json 0 additions, 1 deletionresults/barbershop/100000/base/tukey.json
- results/barbershop/100000/change/estimates.json 0 additions, 1 deletionresults/barbershop/100000/change/estimates.json
- results/barbershop/100000/new/benchmark.json 0 additions, 1 deletionresults/barbershop/100000/new/benchmark.json
- results/barbershop/100000/new/estimates.json 0 additions, 1 deletionresults/barbershop/100000/new/estimates.json
This diff is collapsed.
[package] | ||
name = "simcore-rs" | ||
version = "0.1.0" | ||
authors = ["Dorian Weber <weber@informatik.hu-berlin.de>"] | ||
edition = "2018" | ||
authors = [ | ||
"Dorian Weber <weber@informatik.hu-berlin.de>", | ||
] | ||
edition = "2024" | ||
[dev-dependencies] | ||
rand = { version = "0.9", default-features = false, features = ["small_rng"] } | ||
rand_distr = "0.5" | ||
rayon = "1.10" | ||
[profile.release] | ||
lto = true | ||
lto = "thin" | ||
debug = "full" | ||
opt-level = 3 | ||
[dependencies] | ||
rand = { version = "0.7", default-features = false, features = ["small_rng"] } | ||
[dev-dependencies] | ||
criterion = "0.3.3" | ||
[[bench]] | ||
name = "barbershop" | ||
harness = false | ||
[profile.bench] | ||
lto = true | ||
debug = false |
LICENSE
0 → 100644
benches/barbershop.rs
deleted
100644 → 0
c/Makefile
0 → 100644
c/coroutines.c
0 → 100644
examples/barbershop.rs
0 → 100644
examples/ferry.rs
0 → 100644
examples/philosophers.rs
0 → 100644
results/barbershop.lis
deleted
100644 → 0