From b6794f29e108d95ac37e34ef0de39dc59dc3a5b4 Mon Sep 17 00:00:00 2001 From: Brian Hicks Date: Fri, 21 Feb 2020 16:15:23 -0600 Subject: [PATCH] remove getEntropy --- src/Wave.elm | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/src/Wave.elm b/src/Wave.elm index 8f28b8f..b9ac19a 100644 --- a/src/Wave.elm +++ b/src/Wave.elm @@ -1,4 +1,4 @@ -module Wave exposing (Cell(..), Wave, getEntropy, init, load, step, view) +module Wave exposing (Cell(..), Wave, init, load, step, view) import Adjacency import Array @@ -33,15 +33,6 @@ type Wave a comparable --- DEBUG INFO - - -getEntropy : Wave a comparable -> Heap Entropy -getEntropy (Wave guts) = - guts.entropy - - - -- END DEBUG