Isuru Fernando

Results 938 comments of Isuru Fernando

I tried reproducing, and couldn't make the test fail. Is it just the `std::setlocale(LC_NUMERIC, "de_DE.UTF-8");` that is needed?

`-march=native` doesn't make a visible change in benchmarks for symengine as mentioned in https://github.com/symengine/symengine/issues/1542. Therefore I don't see the point in enabling it.

Here's some test cases to handle, ``` In [14]: t = 2*x* y * z * w In [15]: t.subs({x*y: 2,z*w:4}) Out[15]: 16 In [16]: t.subs({x*y: 2,z:1}) Out[16]: 4*w In...

> How should it be decided whether 3*x*y is returned or 5*z*w? Doesn't matter, use the first match.

symengine doesn't have support for assumptions yet. So, `x = Symbol('x', real=True)` is equivalent to `x = Symbol('x')` (There should be a warning there saying `real=True` is disregarded.)

Nice. Thanks for this work. I've evaluated scikit-build before, but didn't go with it because we'd be losing some features we have right now. From what I remember some of...

From 1., I meant something like below. ``` python3.4 setup.py build python3.5 setup.py build python3.4 setup.py install python3.5 setup.py install ``` Notice the difference between sk-build and setuptools. `_skbuild/cmake-build` vs...

> Hey, @isuruf sorry for the long silence, but I wanted to let you that we haven't forgotten about this investigation. I'm still very interested in exploring the possibility of...

FYI, we are building wheels separately here, https://github.com/symengine/symengine-wheels

I've re-opened this issue and marked as a future enhancement.