From 61f2df857f378517bb2e44819110e181b010c99f Mon Sep 17 00:00:00 2001 From: Lee Spector Date: Thu, 23 Mar 2023 00:37:24 -0400 Subject: [PATCH 1/6] Remove require of propeller.problems.data-creation --- src/propeller/problems/PSB1/count_odds.cljc | 1 - 1 file changed, 1 deletion(-) diff --git a/src/propeller/problems/PSB1/count_odds.cljc b/src/propeller/problems/PSB1/count_odds.cljc index 4d5262b..ddc0b7e 100644 --- a/src/propeller/problems/PSB1/count_odds.cljc +++ b/src/propeller/problems/PSB1/count_odds.cljc @@ -2,7 +2,6 @@ (:require [psb2.core :as psb2] [propeller.genome :as genome] [propeller.push.interpreter :as interpreter] - [propeller.problems.data-creation :as dc] [propeller.utils :as utils] [propeller.push.instructions :refer [get-stack-instructions]] [propeller.push.state :as state] From a5156b37475e796d4e4574b8a966a0ea02b9bfd2 Mon Sep 17 00:00:00 2001 From: Lee Spector Date: Thu, 23 Mar 2023 00:37:59 -0400 Subject: [PATCH 2/6] Remove require of propeller.problems.data-creation --- src/propeller/problems/PSB1/grade.cljc | 1 - 1 file changed, 1 deletion(-) diff --git a/src/propeller/problems/PSB1/grade.cljc b/src/propeller/problems/PSB1/grade.cljc index b2f2590..53b1e79 100644 --- a/src/propeller/problems/PSB1/grade.cljc +++ b/src/propeller/problems/PSB1/grade.cljc @@ -3,7 +3,6 @@ [psb2.core :as psb2] [propeller.genome :as genome] [propeller.push.interpreter :as interpreter] - [propeller.problems.data-creation :as dc] [propeller.push.state :as state] [propeller.push.instructions :refer [get-stack-instructions]] [propeller.utils :as utils] From 98526b0e493d35826003c13a8f56a7db1437ee1e Mon Sep 17 00:00:00 2001 From: Lee Spector Date: Thu, 23 Mar 2023 00:38:24 -0400 Subject: [PATCH 3/6] Remove require of propeller.problems.data-creation --- src/propeller/problems/PSB1/scrabble_score.cljc | 1 - 1 file changed, 1 deletion(-) diff --git a/src/propeller/problems/PSB1/scrabble_score.cljc b/src/propeller/problems/PSB1/scrabble_score.cljc index 68353e4..a60f7da 100644 --- a/src/propeller/problems/PSB1/scrabble_score.cljc +++ b/src/propeller/problems/PSB1/scrabble_score.cljc @@ -4,7 +4,6 @@ [propeller.push.interpreter :as interpreter] [clojure.string :as string] [propeller.tools.math :as math] - [propeller.problems.data-creation :as dc] [propeller.utils :as utils] [propeller.push.instructions :refer [get-stack-instructions]] [propeller.push.state :as state] From 2784998196419d91c6df5342777a84297841f7cd Mon Sep 17 00:00:00 2001 From: Lee Spector Date: Thu, 23 Mar 2023 00:38:59 -0400 Subject: [PATCH 4/6] Remove require of propeller.problems.data-creation --- src/propeller/problems/PSB1/small_or_large.cljc | 1 - 1 file changed, 1 deletion(-) diff --git a/src/propeller/problems/PSB1/small_or_large.cljc b/src/propeller/problems/PSB1/small_or_large.cljc index e258379..9b4adc7 100644 --- a/src/propeller/problems/PSB1/small_or_large.cljc +++ b/src/propeller/problems/PSB1/small_or_large.cljc @@ -2,7 +2,6 @@ (:require [psb2.core :as psb2] [propeller.genome :as genome] [propeller.push.interpreter :as interpreter] - [propeller.problems.data-creation :as dc] [propeller.utils :as utils] [propeller.push.instructions :refer [get-stack-instructions]] [propeller.push.state :as state] From 26b6643ed64738e4132205b1b5126e92632334c6 Mon Sep 17 00:00:00 2001 From: Lee Spector Date: Thu, 23 Mar 2023 12:27:08 -0400 Subject: [PATCH 5/6] Add note about loading problem file separately --- src/propeller/session.cljc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/propeller/session.cljc b/src/propeller/session.cljc index f2ae3c6..220886f 100755 --- a/src/propeller/session.cljc +++ b/src/propeller/session.cljc @@ -59,7 +59,8 @@ ;; One way of running a genetic programming problem defined in the project ;; is to require the problem's namespace and then call `gp/gp` using the -;; items defined for the problem: +;; items defined for the problem. Depending on your IDE and setup, you may +;; also have to open the problem's file and evaluate its contents. #_(require '[propeller.problems.simple-regression :as regression]) From 9053be5a5ae90da58b1e5044c034b6f1cf9fbfd4 Mon Sep 17 00:00:00 2001 From: Lee Spector Date: Thu, 23 Mar 2023 12:47:05 -0400 Subject: [PATCH 6/6] Add link to GitHub Pages documentation --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4219884..8fdca23 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ Yet another Push-based genetic programming system in Clojure. -Full documentation is on the GitHub pages link. +Full documentation is at [https://lspector.github.io/propeller/](https://lspector.github.io/propeller/). ## Usage