(value)
| 5 | import Equation from '../../src/recurrent/matrix/equation'; |
| 6 | |
| 7 | function fourSquareMatrix(value) { |
| 8 | var result = new Matrix(4, 4); |
| 9 | result.weights.forEach((_, i) => { |
| 10 | result.weights[i] = value; |
| 11 | }); |
| 12 | return result; |
| 13 | } |
| 14 | |
| 15 | describe('equation', () => { |
| 16 | describe('run', () => { |