Initial commit

This commit is contained in:
Pascal Engélibert 2023-11-16 23:28:16 +01:00
commit aaa212b9a9
22 changed files with 4778 additions and 0 deletions

29
Cargo.toml Normal file
View file

@ -0,0 +1,29 @@
[package]
name = "rustmodel"
version = "0.1.0"
edition = "2021"
description = "simple ODE solving framework"
authors = ["tuxmain <tuxmain@zettascript.org>"]
repository = "https://git.txmn.tk/tuxmain/rustmodel"
license = "AGPL-3.0-only"
[dependencies]
derive_builder = { version = "0.12.0", optional = true }
nalgebra = "0.32.3"
num-traits = "0.2.17"
palette = { version = "0.7.3", optional = true }
plotters = { version = "0.3.5", optional = true }
#plotters = { git = "https://github.com/plotters-rs/plotters" }
#rand = {version = "0.8.5", optional = true }
#rayon = "1.8.0"
#sdl2 = "0.35.2"
[features]
default = ["plot"]
# opti is about numerical optimization methods, not computing speed!
#opti = ["nalgebra/rand", "rand"]
plot = ["derive_builder", "palette", "plotters"]
[workspace]
members = ["examples/epidemics"]