summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorsanine <sanine.not@pm.me>2023-11-21 21:06:20 -0600
committersanine <sanine.not@pm.me>2023-11-21 21:06:20 -0600
commita005bcdf7b24ef60ef0a9336e27801e8d8ec70ad (patch)
treeb8d2765dbc46e6df36f5fd881aef402db3019afd /test
parentfae22e68282336fc0d7f0efda236410a294b7eb5 (diff)
implement output computation
Diffstat (limited to 'test')
-rw-r--r--test/MindTest.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/MindTest.hs b/test/MindTest.hs
index cf5c50a..7b208b4 100644
--- a/test/MindTest.hs
+++ b/test/MindTest.hs
@@ -92,8 +92,8 @@ networkTests = testGroup "network tests" $
, testCase "multiple inputs, multiple outputs" $
let
net = Network 4 []
- [ [ Edge (Input 0, 1.0)
- , Edge (Input 1, negate 2.0)
+ [ [ Edge (Input 0, negate 1.0)
+ , Edge (Input 1, 1.0)
]
, [ Edge (Input 2, negate 1.0)
, Edge (Input 3, 1.0)