Skip to content

Commit

Permalink
diffsol version updated, version bumped to 0.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Siel committed Jun 25, 2024
1 parent 65a4a50 commit 0ec753f
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 40 deletions.
68 changes: 33 additions & 35 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pharmsol"
version = "0.2.2"
version = "0.2.3"
edition = "2021"
authors = [
"Julián D. Otálvaro <[email protected]>",
Expand All @@ -15,10 +15,10 @@ anyhow = "1.0.83"
argmin = "0.10.0"
argmin-math = { version = "0.4.0", features = ["ndarray_v0_15-nolinalg"] }
csv = "1.3.0"
dashmap = "5.5.3"
diffsol = "=0.1.10"
dashmap = "6.0.1"
diffsol = "=0.1.11"
lazy_static = "1.4.0"
nalgebra = "0.32.5"
nalgebra = "0.33.0"
ndarray = { version = "0.15.6", features = ["rayon"] }
rayon = "1.10.0"
serde = { version= "1.0.201", features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion src/simulator/ode/diffsol_traits.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ where
let rhs = Rc::new(rhs);
let init = ConstantClosure::new(init, p.clone());
let init = Rc::new(init);
let eqn = OdeSolverEquations::new(rhs, None, None, init, p);
let eqn = OdeSolverEquations::new(rhs, None, None, init, None, p);
let atol = M::V::from_element(nstates, M::T::from(atol));
OdeSolverProblem::new(
eqn,
Expand Down

0 comments on commit 0ec753f

Please sign in to comment.