Skip to content

Commit 42b4ec6

Browse files
committed
Fix one parser test
1 parent 4625ed8 commit 42b4ec6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/parser/input_1.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
A = zeros(5); # 3x3 matrix filled with zeros
2-
B = ones(7); # 3x3 matrix filled with ones
3-
C = eye(10); # 3x3 diagonal matrix filled with ones
2+
B = ones(5); # 3x3 matrix filled with ones
3+
C = eye(5); # 3x3 diagonal matrix filled with ones
44
D = A.+B; # add element-wise
55
E -= A.-B; # substract element-wise
66
F *= A.*B; # multiply element-wise

0 commit comments

Comments
 (0)