Commit 10395e3e authored by Kirill Smelkov's avatar Kirill Smelkov

.

parent e7a62001
...@@ -116,13 +116,11 @@ def test_AllStructs(): ...@@ -116,13 +116,11 @@ def test_AllStructs():
print('\n\nAAA\n\n') print('\n\nAAA\n\n')
assert X([1,3], 1, 1) == [ assert X([1,3], 1, 1) == [
# nsplit=0, depth=0 #T/
T([], B(1,3)), T([], B(1,3)), # nsplit=0
# nsplit=0,0, depth=1 T([], # nsplit=0,0
T([],
T([], B(1,3))), T([], B(1,3))),
# nsplit=0,1, depth=1 T([], # nsplit=0,1
T([],
T([0], B(), B(1,3))), T([0], B(), B(1,3))),
T([], T([],
T([1], B(), B(1,3))), T([1], B(), B(1,3))),
...@@ -132,15 +130,11 @@ def test_AllStructs(): ...@@ -132,15 +130,11 @@ def test_AllStructs():
T([3], B(1), B(3))), T([3], B(1), B(3))),
T([], T([],
T([4], B(1,3), B())), T([4], B(1,3), B())),
# nsplit=1, depth=0 T([0], B(), B(1,3)), # nsplit=1
T([0], B(), B(1,3)),
T([0], # nsplit=1,(0,0) T([0], # nsplit=1,(0,0)
T([], B()), T([], B()),
T([], B(1,3))), T([], B(1,3))),
T([0], # nsplit=1,(0,1)
# nsplit=1,(0,1)
T([0], # T0/
T([], B()), T([], B()),
T([1], B(), B(1,3))), T([1], B(), B(1,3))),
T([0], T([0],
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment