From 2dadf59b8fba366b3a78c6ec628ae2b582f661a6 Mon Sep 17 00:00:00 2001 From: Francesco Terenzi Date: Tue, 13 Feb 2024 16:39:43 +0000 Subject: [PATCH] v2.2.14 --- CHANGELOG.md | 3 +++ Cargo.lock | 2 +- Cargo.toml | 2 +- src/clap_app.rs | 2 +- 4 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ff212640..05641693 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,9 @@ # Changelog The semantic versioning is kind of random. +## 2.2.14 +- increase the range of sigma up to 1 + ## 2.2.13 - in the first exponential phase, start with one cell with one neutral mutation diff --git a/Cargo.lock b/Cargo.lock index 62ac4ccb..49deac47 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -311,7 +311,7 @@ checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" [[package]] name = "hsc" -version = "2.2.13" +version = "2.2.14" dependencies = [ "anyhow", "chrono", diff --git a/Cargo.toml b/Cargo.toml index e77d9879..4a3c2a42 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hsc" -version = "2.2.13" +version = "2.2.14" edition = "2021" [dependencies] diff --git a/src/clap_app.rs b/src/clap_app.rs index d988dfc9..90b0a0ab 100644 --- a/src/clap_app.rs +++ b/src/clap_app.rs @@ -56,7 +56,7 @@ pub struct FitnessArg { } const MEAN_RANGE: RangeInclusive = 0.01..=4.; -const STD_RANGE: RangeInclusive = 0.001..=0.5; +const STD_RANGE: RangeInclusive = 0.001..=1.; fn fitness_in_range(s: &str) -> Result { let fitness: f32 = s