Skip to content
This repository has been archived by the owner on Jan 3, 2024. It is now read-only.

Commit

Permalink
build
Browse files Browse the repository at this point in the history
  • Loading branch information
matiasvlevi committed Jan 31, 2021
1 parent 8d78236 commit e89ab4d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions build/dann.js
Original file line number Diff line number Diff line change
Expand Up @@ -1467,19 +1467,19 @@ class Dann {
const XOR = [
{
input: [1,0],
output: [0]
output: [1]
},
{
input: [0,1],
output: [0]
output: [1]
},
{
input: [0,0],
output: [1]
output: [0]
},
{
input: [1,1],
output: [1]
output: [0]
}
];

Expand Down
Loading

0 comments on commit e89ab4d

Please sign in to comment.