From 67644bf793224f035726919cd014468fc963f6b9 Mon Sep 17 00:00:00 2001 From: Peter Kalivas Date: Wed, 8 Jan 2025 18:02:31 -0600 Subject: [PATCH 1/3] updating docs for new version --- docs/examples.md | 2 +- docs/extensions.md | 2 +- docs/quickstart.md | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/examples.md b/docs/examples.md index 08195d1a..28793bb2 100644 --- a/docs/examples.md +++ b/docs/examples.md @@ -432,7 +432,7 @@ comprehensive list of examples. ```rust use radiate::*; - use radiate_extensions::*; + use radiate_gp::*; const MAX_INDEX: i32 = 500; const MIN_SCORE: f32 = 0.01; diff --git a/docs/extensions.md b/docs/extensions.md index 240988c4..a98873fc 100644 --- a/docs/extensions.md +++ b/docs/extensions.md @@ -1,7 +1,7 @@ # Extensions -The radiate-extensions provides genetic programming capabilities. +The radiate-gp provides genetic programming capabilities. The crate is not yet documented to the extent it should be, but you can refer to the [examples](https://github.com/pkalivas/radiate/tree/master/radiate-examples) for now. diff --git a/docs/quickstart.md b/docs/quickstart.md index 34f6edb8..f3f7828a 100644 --- a/docs/quickstart.md +++ b/docs/quickstart.md @@ -9,7 +9,7 @@ Radiate is inspired from a multitude of other genetic algorithm libraries, all o ## Configuration ```toml [dependencies] -radiate = "1.2.6" +radiate = "1.2.7" ``` ## Core Implementations @@ -39,11 +39,11 @@ Fitness Function ## Extensions -For genetic programming Radiate offers a separate crate called [radiate-extenions](https://crates.io/crates/radiate-extensions) which extend the core library with additional features. Mainly it provides a [genetic programming](https://en.wikipedia.org/wiki/Genetic_programming#:~:text=In%20artificial%20intelligence%2C%20genetic%20programming,to%20the%20population%20of%20programs.) - probems that are represented as Trees (Expression Trees) or Graphs (NeuroEvolution). These offer powerful ways to solve complex problems. +For genetic programming Radiate offers a separate crate called [radiate-gp](https://crates.io/crates/radiate-gp) which extend the core library with additional features. Mainly it provides a [genetic programming](https://en.wikipedia.org/wiki/Genetic_programming#:~:text=In%20artificial%20intelligence%2C%20genetic%20programming,to%20the%20population%20of%20programs.) - probems that are represented as Trees (Expression Trees) or Graphs (NeuroEvolution). These offer powerful ways to solve complex problems. ```toml [dependencies] -radiate-extensions = "0.1.2" +radiate-gp = "0.0.1" ``` !!! note From f2f614b8e341d923956faad213848372e262ab36 Mon Sep 17 00:00:00 2001 From: Peter Kalivas Date: Wed, 8 Jan 2025 18:03:14 -0600 Subject: [PATCH 2/3] publishing --- radiate-gp/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/radiate-gp/Cargo.toml b/radiate-gp/Cargo.toml index cd08239e..7e936a0d 100644 --- a/radiate-gp/Cargo.toml +++ b/radiate-gp/Cargo.toml @@ -12,6 +12,6 @@ license = "MIT" documentation = "https://pkalivas.github.io/radiate/" [dependencies] -radiate = { path = "../radiate" } +radiate = "1.2.7" uuid = { version = "1.10.0", features = ["v4"] } rand = "0.8.5" From 40390371b6111ac63ae575e7e099ae4ae9761c94 Mon Sep 17 00:00:00 2001 From: Peter Kalivas Date: Wed, 8 Jan 2025 18:04:08 -0600 Subject: [PATCH 3/3] publishing gp --- radiate-gp/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/radiate-gp/Cargo.toml b/radiate-gp/Cargo.toml index 7e936a0d..cd08239e 100644 --- a/radiate-gp/Cargo.toml +++ b/radiate-gp/Cargo.toml @@ -12,6 +12,6 @@ license = "MIT" documentation = "https://pkalivas.github.io/radiate/" [dependencies] -radiate = "1.2.7" +radiate = { path = "../radiate" } uuid = { version = "1.10.0", features = ["v4"] } rand = "0.8.5"