|
@ -16,6 +16,8 @@ def read_math_function(): |
|
|
simplified = simplify_constant(type, function) |
|
|
simplified = simplify_constant(type, function) |
|
|
elif type == "v": |
|
|
elif type == "v": |
|
|
simplified = simplify_easy_math_function(type, function) |
|
|
simplified = simplify_easy_math_function(type, function) |
|
|
|
|
|
elif type == "p": |
|
|
|
|
|
simplified = simplify_product_function(type, function) |
|
|
elif type == "e": |
|
|
elif type == "e": |
|
|
simplified = simplify_exponential_function(type, function) |
|
|
simplified = simplify_exponential_function(type, function) |
|
|
if not simplified: |
|
|
if not simplified: |
|
|