Skip to content

Commit 68606ee

Browse files
authored
Merge pull request #46 from JuliaReach/schillic/format
Format code
2 parents 307e68d + 88ea172 commit 68606ee

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/Architecture/FeedforwardNetwork.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,8 @@ println(io, N2)
5353
L1 = ConvolutionalLayerOp([reshape([1 0; -1 2], (2, 2, 1))], [1], ReLU())
5454
L2 = MaxPoolingLayerOp(1, 1)
5555
L3 = FlattenLayerOp()
56-
W = zeros(2, 9); W[1, 1] = W[2, 2] = 1
56+
W = zeros(2, 9);
57+
W[1, 1] = W[2, 2] = 1;
5758
L4 = DenseLayerOp(W, [1.0 0], ReLU())
5859
N3 = FeedforwardNetwork([L1, L2, L3, L4])
5960
T441 = reshape([0 4 2 1; -1 0 1 -2; 3 1 2 0; 0 1 4 1], (4, 4, 1))

0 commit comments

Comments
 (0)