Spaces:
Sleeping
Sleeping
Add more unary operators
Browse files- gui/app.py +2 -1
gui/app.py
CHANGED
|
@@ -97,7 +97,8 @@ def main():
|
|
| 97 |
default=["+", "-", "*", "/"],
|
| 98 |
),
|
| 99 |
gr.inputs.CheckboxGroup(
|
| 100 |
-
choices=["sin", "cos", "exp", "log"
|
|
|
|
| 101 |
label="Unary Operators",
|
| 102 |
default=[],
|
| 103 |
),
|
|
|
|
| 97 |
default=["+", "-", "*", "/"],
|
| 98 |
),
|
| 99 |
gr.inputs.CheckboxGroup(
|
| 100 |
+
choices=["sin", "cos", "exp", "log", "square", "cube",
|
| 101 |
+
"sqrt", "abs", "tan"],
|
| 102 |
label="Unary Operators",
|
| 103 |
default=[],
|
| 104 |
),
|