[package]
edition = "2021"
name = "pathwise-core"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "High-performance SDE simulation engine: Euler, Milstein, SRI (strong-order 1.5), CIR, Heston, correlated OU"
documentation = "https://docs.rs/pathwise-core"
readme = "README.md"
keywords = [
"sde",
"simulation",
"stochastic",
"finance",
"riemannian",
]
categories = [
"mathematics",
"science",
"simulation",
]
license = "MIT"
repository = "https://github.com/alejandro-soto-franco/pathwise"
[lib]
name = "pathwise_core"
path = "src/lib.rs"
[[test]]
name = "convergence"
path = "tests/convergence.rs"
[[test]]
name = "nd"
path = "tests/nd.rs"
[[bench]]
name = "simulate"
path = "benches/simulate.rs"
harness = false
[dependencies.nalgebra]
version = "0.33"
features = ["std"]
default-features = false
[dependencies.ndarray]
version = "0.15"
[dependencies.rand]
version = "0.9"
[dependencies.rand_distr]
version = "0.5"
[dependencies.rayon]
version = "1.10"
[dependencies.thiserror]
version = "2"
[dev-dependencies.approx]
version = "0.5"
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]