Update app.py
Browse files
app.py
CHANGED
|
@@ -76,6 +76,10 @@ else:
|
|
| 76 |
mcl = None
|
| 77 |
|
| 78 |
ALGORITHMS: Dict[str, Algorithm] = {
|
|
|
|
|
|
|
|
|
|
|
|
|
| 79 |
'Watset[CW_top, CW_top]': Algorithm('watset', None, 'cw', 'mode=top', 'cw', 'mode=top'),
|
| 80 |
'Watset[CW_lin, CW_top]': Algorithm('watset', None, 'cw', 'mode=lin', 'cw', 'mode=top'),
|
| 81 |
'Watset[CW_log, CW_top]': Algorithm('watset', None, 'cw', 'mode=log', 'cw', 'mode=top'),
|
|
@@ -88,10 +92,6 @@ ALGORITHMS: Dict[str, Algorithm] = {
|
|
| 88 |
'Watset[CW_lin, CW_log]': Algorithm('watset', None, 'cw', 'mode=lin', 'cw', 'mode=log'),
|
| 89 |
'Watset[CW_log, CW_log]': Algorithm('watset', None, 'cw', 'mode=log', 'cw', 'mode=log'),
|
| 90 |
'Watset[MCL, CW_log]': Algorithm('watset', None, 'mcl', None, 'cw', 'mode=log'),
|
| 91 |
-
'CW_top': Algorithm('cw', 'top'),
|
| 92 |
-
'CW_lin': Algorithm('cw', 'lin'),
|
| 93 |
-
'CW_log': Algorithm('cw', 'log'),
|
| 94 |
-
'MaxMax': Algorithm('maxmax')
|
| 95 |
}
|
| 96 |
|
| 97 |
if mcl:
|
|
|
|
| 76 |
mcl = None
|
| 77 |
|
| 78 |
ALGORITHMS: Dict[str, Algorithm] = {
|
| 79 |
+
'CW_top': Algorithm('cw', 'top'),
|
| 80 |
+
'CW_lin': Algorithm('cw', 'lin'),
|
| 81 |
+
'CW_log': Algorithm('cw', 'log'),
|
| 82 |
+
'MaxMax': Algorithm('maxmax')
|
| 83 |
'Watset[CW_top, CW_top]': Algorithm('watset', None, 'cw', 'mode=top', 'cw', 'mode=top'),
|
| 84 |
'Watset[CW_lin, CW_top]': Algorithm('watset', None, 'cw', 'mode=lin', 'cw', 'mode=top'),
|
| 85 |
'Watset[CW_log, CW_top]': Algorithm('watset', None, 'cw', 'mode=log', 'cw', 'mode=top'),
|
|
|
|
| 92 |
'Watset[CW_lin, CW_log]': Algorithm('watset', None, 'cw', 'mode=lin', 'cw', 'mode=log'),
|
| 93 |
'Watset[CW_log, CW_log]': Algorithm('watset', None, 'cw', 'mode=log', 'cw', 'mode=log'),
|
| 94 |
'Watset[MCL, CW_log]': Algorithm('watset', None, 'mcl', None, 'cw', 'mode=log'),
|
|
|
|
|
|
|
|
|
|
|
|
|
| 95 |
}
|
| 96 |
|
| 97 |
if mcl:
|