Skip to content

Commit

Permalink
v2.2.14
Browse files Browse the repository at this point in the history
  • Loading branch information
fraterenz committed Feb 13, 2024
1 parent 6916eab commit 2dadf59
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hsc"
version = "2.2.13"
version = "2.2.14"
edition = "2021"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion src/clap_app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ pub struct FitnessArg {
}

const MEAN_RANGE: RangeInclusive<f32> = 0.01..=4.;
const STD_RANGE: RangeInclusive<f32> = 0.001..=0.5;
const STD_RANGE: RangeInclusive<f32> = 0.001..=1.;

fn fitness_in_range(s: &str) -> Result<f32, String> {
let fitness: f32 = s
Expand Down

0 comments on commit 2dadf59

Please sign in to comment.