Oscar Benjamin

Results 1324 comments of Oscar Benjamin

It seems like `mpmath` accepts this: ```python In [2]: from mpmath import findroot In [3]: findroot(lambda x: False, 1) Out[3]: mpf('1.0') ``` I guess that's because False is sort of...

You should compare with the dev docs rather than the previous release: https://docs.sympy.org/dev/tutorials/intro-tutorial/solvers.html

Also I think this kind of alignment problem with unicode output is to do with the font support in your browser. Basically your browser doesn't have the right monospace fonts...

I tend to think that using `solve` in the way this guide suggests should probably be deprecated in favour of the explicit inequality solve methods.

SymPy does not really support solving a system of inequalities in any meaningful way. If we're going to have a docs page about how to do this then it needs...

I think it would be better to recommend `reduce_inequalities`. The name also better clarifies what the function does. I don't think it makes sense to say "solve a system of...

My summary of the issues and PRs tagged for 1.11: - [x] There is #22993 by @oscargus which fixes a bug in lambdify and also adds a large number of...

> I am particularly interested in seeing #23659 #23647 included in 1.11 Those are both already merged to master. Since the release branch has not yet been created they will...

Would this work if SymPy was using the PyPI multipledispatch module? I'd really like to get rid of SymPy's multipledispatch module and use that instead.

> Replacing the dispatchers with the pypi dispatcher is not something I will pick up. Fair enough but my point is that I don't want to introduce any changes that...