diff --git a/src/propeller/problems/stocks/stock_regression.cljc b/src/propeller/problems/stocks/stock_regression.cljc index 050cce6..081e78b 100644 --- a/src/propeller/problems/stocks/stock_regression.cljc +++ b/src/propeller/problems/stocks/stock_regression.cljc @@ -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"