Merge remote-tracking branch 'upstream/master'

This commit is contained in:
Ryan Boldi 2023-03-24 08:50:28 -04:00
commit d226c82074
6 changed files with 3 additions and 6 deletions

View File

@ -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

View File

@ -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]

View File

@ -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]

View File

@ -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]

View File

@ -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]

View File

@ -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])