diff --git a/src/propeller/gp.cljc b/src/propeller/gp.cljc index a849a93..11da7f9 100755 --- a/src/propeller/gp.cljc +++ b/src/propeller/gp.cljc @@ -34,7 +34,7 @@ max-initial-plushy-size] :as argmap}] ;; - (println {:starting-args argmap}) + (prn {:starting-args (update (update argmap :error-function str) :instructions str)}) (println) ;; (loop [generation 0 @@ -52,8 +52,8 @@ (cond ;; Success on training cases is verified on testing cases (zero? (:total-error best-individual)) - (do (println {:success-generation generation}) - (println {:total-test-error (:total-error (error-function argmap best-individual :test))}) + (do (prn {:success-generation generation}) + (prn {:total-test-error (:total-error (error-function argmap best-individual :test))}) (#?(:clj shutdown-agents)) ) ;;