From def7c1e96522525e039087de18245c669f7b9dfc Mon Sep 17 00:00:00 2001 From: Rowan Torbitzky-Lane Date: Fri, 14 Mar 2025 19:57:50 -0500 Subject: [PATCH] change of imports --- src/propeller/problems/stocks/stock_regression.cljc | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) 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"