Python bindings for oCAS.
The top-level Python module is named ocas (see pyproject.toml).
Quick start
=
# derivative
Python bindings for oCAS.
The top-level Python module is named ocas (see pyproject.toml).
import ocas
e = ocas.Expression("x^2 + 2*x + 1")
print(e.diff("x")) # derivative
print(e.simplify())
print(ocas.solve_diophantine(3, 5, 1))