File size: 385 Bytes
38f87b5
 
e986ee1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from raven_utils.tools import dict_from_list

COMBINE = "Number/Position"

ATTRIBUTES = [
    "Number",
    "Position",
    "Color",
    "Size",
    "Type"
]
ATTRIBUTES_LEN = len(ATTRIBUTES)
ATTRIBUTES_INDEX = dict_from_list(ATTRIBUTES)

TYPES = [
    "Constant",
    "Arithmetic",
    "Progression",
    "Distribute_Three"
]
TYPES_INDEX = dict_from_list(TYPES)
TYPES_LEN = len(TYPES)