-
Notifications
You must be signed in to change notification settings - Fork 7
Add petab-compatible sympy codeprinter #362
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
dweindl
added a commit
to dweindl/libpetab-python
that referenced
this issue
Mar 20, 2025
Add a sympy Printer to stringify sympy expressions in a petab-compatible way. For example, we need to avoid `str(sympy.sympify("x^2"))` -> `'x**2'`. Closes PEtab-dev#362.
dweindl
added a commit
to dweindl/libpetab-python
that referenced
this issue
Mar 20, 2025
Add a sympy Printer to stringify sympy expressions in a petab-compatible way. For example, we need to avoid `str(sympy.sympify("x^2"))` -> `'x**2'`. Closes PEtab-dev#362.
dweindl
added a commit
to dweindl/libpetab-python
that referenced
this issue
Mar 21, 2025
Add a sympy Printer to stringify sympy expressions in a petab-compatible way. For example, we need to avoid `str(sympy.sympify("x^2"))` -> `'x**2'`. Closes PEtab-dev#362.
dweindl
added a commit
to dweindl/libpetab-python
that referenced
this issue
Mar 21, 2025
Add a sympy Printer to stringify sympy expressions in a petab-compatible way. For example, we need to avoid `str(sympy.sympify("x^2"))` -> `'x**2'`. Closes PEtab-dev#362.
Merged
dweindl
added a commit
to dweindl/libpetab-python
that referenced
this issue
Mar 27, 2025
Add a sympy Printer to stringify sympy expressions in a petab-compatible way. For example, we need to avoid `str(sympy.sympify("x^2"))` -> `'x**2'`. Closes PEtab-dev#362.
dweindl
added a commit
to dweindl/libpetab-python
that referenced
this issue
Mar 27, 2025
Add a sympy Printer to stringify sympy expressions in a petab-compatible way. For example, we need to avoid `str(sympy.sympify("x^2"))` -> `'x**2'`. Closes PEtab-dev#362.
dweindl
added a commit
to dweindl/libpetab-python
that referenced
this issue
Mar 27, 2025
Add a sympy Printer to stringify sympy expressions in a petab-compatible way. For example, we need to avoid `str(sympy.sympify("x^2"))` -> `'x**2'`. Closes PEtab-dev#362.
dweindl
added a commit
to dweindl/libpetab-python
that referenced
this issue
Mar 27, 2025
Add a sympy Printer to stringify sympy expressions in a petab-compatible way. For example, we need to avoid `str(sympy.sympify("x^2"))` -> `'x**2'`. Closes PEtab-dev#362.
dweindl
added a commit
that referenced
this issue
Mar 27, 2025
Add a sympy Printer to stringify sympy expressions in a petab-compatible way. For example, we need to avoid `str(sympy.sympify("x^2"))` -> `'x**2'`. Closes #362.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
We need some codeprinter to stringify sympy expressions in a petab-compatible way.
For example, we need to avoid
str(sympy.sympify("x^2"))
->'x**2'
.The text was updated successfully, but these errors were encountered: