summaryrefslogtreecommitdiff
path: root/src/Mind.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Mind.hs')
-rw-r--r--src/Mind.hs11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/Mind.hs b/src/Mind.hs
new file mode 100644
index 0000000..02b98b1
--- /dev/null
+++ b/src/Mind.hs
@@ -0,0 +1,11 @@
+module Mind
+ ( NeuronIndex (..)
+ , getNeuronIndex
+ ) where
+
+-- types
+data NeuronIndex = Input Int | Internal Int | Output Int
+getNeuronIndex :: NeuronIndex -> Int
+getNeuronIndex i = undefined
+
+newtype Edge = Edge (NeuronIndex, Float)