-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathlogic_FourValued.js
46 lines (46 loc) · 1.31 KB
/
logic_FourValued.js
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
export function logicFourValued() {
return {
"four-valued": {
"metrics": {
"Maybe false": {
"label": "Maybe false",
"unit": "number",
"min": 0,
"med": 50,
"max": 100,
"current": 15
},
"True": {
"label": "True",
"unit": "number",
"min": 0,
"med": 50,
"max": 100,
"current": 70
},
"False": {
"label": "False",
"unit": "number",
"min": 0,
"med": 50,
"max": 100,
"current": 5
},
"Maybe true": {
"label": "Maybe true",
"unit": "number",
"min": 0,
"med": 50,
"max": 100,
"current": 10
}
},
"layer": {
"four-valued-layer": {
"label": "Four-valued layer",
"layerMetricsUnits": "something",
}
}
}
}
}