change of imports
Some checks are pending
CI / test-clj (push) Waiting to run
CI / test-cljs (push) Waiting to run

This commit is contained in:
Rowan Torbitzky-Lane 2025-03-14 19:57:50 -05:00
parent acdc1ed18a
commit def7c1e965

View File

@ -1,10 +1,11 @@
(ns propeller.problems.stocks.stock-regression
(:require [propeller.genome :as genome]
[propeller.push.interpreter :as interpreter]
[propeller.push.state :as state]
[propeller.tools.math :as math]
[propeller.gp :as gp]
#?(:cljs [cljs.reader :refer [read-string]])))
(:require
[clojure.core :refer [read-string]]
[propeller.genome :as genome]
[propeller.gp :as gp]
[propeller.push.interpreter :as interpreter]
[propeller.push.state :as state]
[propeller.tools.math :as math]))
(defn- target-function
"Target function: f(x) = x^3 + 2*x^2 + x + 3"