Rikard Nordgren
Rikard Nordgren
I get the following warning from mpmath (when using it via sympy): ``` .tox/py37/lib/python3.7/site-packages/mpmath/libmp/six.py:74 /home/user/devel/myproj/.tox/py37/lib/python3.7/site-packages/mpmath/libmp/six.py:74: DeprecationWarning: the imp module is deprecated in favour of importlib; see the module's documentation for...
After upgrading ipykernel to version 6 (issue also present in 6.1.0) in the documentation building system for https://github.com/pharmpy/pharmpy we encounter the error below. We are using the https://github.com/jupyter/jupyter-sphinx extension to...
A start for Matrix expressions * `IdentityMatrix` * `ZeroMatrix` * `DiagonalMatrix` (immutable special case matrix literal) * `MatrixAdd` Test functions for matrix expressions: * `is_zero` * `is_real` * `is_symmetric` *...
* Change `tribool` from plain `enum` to safer `enum class` * Move `tribool` to its own header `tribool.h` * Add `or_tribool` and `orwk_tribool` for completeness * Add tests for `tribool_from_bool`...
* Integral class * integrate function with implementation of the first two pattern rules of Rubi-5
Convert the mobius and mertens functions to become symbolic functions. Calculations of numeric values can be optimized. In the future I think we should separate the numeric calculations. Currently symbolics...
symengine in general automatically evaluates an expression to the precision given by floating point `Real` objects. Some cases are not doing this: ```python import symengine symengine.E*2.0 Out[1]: 2.0*E ``` ```python...
* simplify Immutable to new Immutable * sympy.sympify matrices to Immutable
When replacing the `Integer` class in sympy with the same class in symengine the sympy unit tests fail because of the missing `sort_key` method. ```python import sympy x = sympy.Integer(1)...