Oscar Benjamin

Results 106 issues of Oscar Benjamin

#### References to other Issues or PRs Fixes gh-26571 #### Brief description of what is fixed or changed Treat floats like rationals in as_coeff_mul by default. This mirrors the behaviour...

core
floats
integrals.meijerg

After fixing gh-26497 I find the following for the OP example: ```python In [16]: expr Out[16]: 4 2 4 4 3 2 3 3 2 ↪ aₙ ⋅m 2⋅aₙ ⋅m...

polys

This implements https://github.com/mesonbuild/meson/issues/13046#issuecomment-2099453043. On Linux the current meson build needs `LD_LIBRARY_PATH` to be set when using a local build of flint. This adds a project option to install the rpaths...

Currently python-flint builds using a setup.py and also uses distutils and numpy.distutils (see #4). As of Python 3.12 the stdlib distutils module is removed and also numpy is removing its...

Currently it is a bit awkward to use flint's fmpz and fmpq because they do not interoperate with anything else: ```python In [1]: import flint In [2]: import gmpy2 In...

type: feature request

Currently the python-flint interface to Flint is sort of somewhere between a high-level interface and a lower-level interface. In #53 I mention some ideas related to fleshing out what a...

type: discussion

Add PYPy 3.9 to CI build to test #74

The basic question here is whether it makes sense to distinguish between things like `nmod` vs `fmpz_mod` in python-flint. Currently python-flint only has `nmod`. It would be good to add...

type: discussion

Currently in python-flint the available types are all types that can be implemented without the need for any sort of "context" or "domain" object e.g. `fmpz`, `fmpq`, `nmod` etc. In...

type: discussion

I think that linking against ucrt is preferable rather than msvcrt although currently it doesn't seem to cause any problems. There is some information about this here: https://www.msys2.org/docs/environments/ My understanding...