-
Notifications
You must be signed in to change notification settings - Fork 0
/
testsA.py
83 lines (66 loc) · 1.33 KB
/
testsA.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
import boolop as bo
testsA=[]
A0=bo.AllSegments(1)
A0.addRedSq(4)
A0.addBlue(-6,0,-2,0)
testsA.append(A0)
A1=bo.AllSegments(2)
A1.addRedSq(4)
A1.addBlue(-5,2,-2,5)
testsA.append(A1)
A2=bo.AllSegments(2)
A2.addRedSq(4)
A2.addBlue(-5,1,5,1)
testsA.append(A2)
A3=bo.AllSegments(1)
A3.addRedSq(4)
A3.addBlue(0,2,0,6)
testsA.append(A3)
A4=bo.AllSegments(2)
A4.addRedSq(4)
A4.addBlue(1,5,1,-5)
testsA.append(A4)
A5=bo.AllSegments(2)
A5.addRedSq(4)
A5.addBlue(2,5,5,2)
testsA.append(A5)
A6=bo.AllSegments(1)
A6.addRedSq(4)
A6.addBlue(2,0,6,0)
testsA.append(A6)
A7=bo.AllSegments(2)
A7.addRedSq(4)
A7.addBlue(2,-5,5,-2)
testsA.append(A7)
A8=bo.AllSegments(1)
A8.addRedSq(4)
A8.addBlue(0,-2,0,-6)
testsA.append(A8)
A9=bo.AllSegments(2)
A9.addRedSq(4)
A9.addBlue(-5,-2,-2,-5)
testsA.append(A9)
A10=bo.AllSegments(2)
A10.addRedSq(4)
A10.addBlue(-5,3,5,8)
testsA.append(A10)
A11=bo.AllSegments(2)
A11.addRedSq(4)
A11.addBlue(-5,8,5,3)
testsA.append(A11)
A12=bo.AllSegments(2)
A12.addRedSq(4)
A12.addBlue(-5,2,5,-2)
testsA.append(A12)
A13=bo.AllSegments(2)
A13.addRedSq(4)
A13.addBlue(-5,-2,5,2)
testsA.append(A13)
A14=bo.AllSegments(2)
A14.addRedSq(4)
A14.addBlue(-5,-3,5,-8)
testsA.append(A14)
A15=bo.AllSegments(2)
A15.addRedSq(4)
A15.addBlue(-5,-8,5,-3)
testsA.append(A15)