Skip to content

Commit

Permalink
version 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Siel committed Oct 17, 2024
1 parent 1194ed8 commit 69986e7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pharmsol"
version = "0.6.3"
version = "0.7.0"
edition = "2021"
authors = ["Julián D. Otálvaro <[email protected]>", "Markus Hovd"]
description = "Rust library for solving analytic and ode-defined pharmacometric models."
Expand Down
2 changes: 1 addition & 1 deletion src/data/error_model.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ impl<'a> ErrorModel<'_> {
};

if res.is_nan() || res < 0.0 {
panic!("negative sd");
panic!("The computed standard deviation is either NaN or negative (SD = {}), coercing to 0", res);
// tracing::error!(
// "The computed standard deviation is either NaN or negative (SD = {}), coercing to 0",
// res
Expand Down

0 comments on commit 69986e7

Please sign in to comment.