Marc Mezzarobba
Marc Mezzarobba
Hello everyone, While https://github.com/linbox-team/linbox/ lists three releases in 2017, http://linalg.org/index.html still shows 1.4.2 as the last release. Is that intentional?
* I think `gr_ctx_set_gen_names` should work in the case of a single generator; this is not the case with univariate polynomials, nor for number fields. * Neither `gr_ctx_set_gen_name` nor `gr_ctx_set_gen_names`...
An API for accessing generator names. This includes some debatable choices. Most importantly, I am treating contexts as containers as regards generator names (not using status flags, providing pointers to...
As discussed in https://github.com/sagemath/sage/issues/39845: ``` ~/co/flint:main$ cat arb_mul_exact.c #include "flint.h" #include "arb.h" #include "profiler.h" int main(void) { flint_rand_t state; fmpz_t x; arb_t a, b; flint_rand_init(state); fmpz_init(x); arb_init(a); arb_init(b); fmpz_randbits(x, state,...
According to the current text, the “sylvester version [...] is useful over inexact rings and as a fallback for rings without division”, but “no algorithm has been implemented that is...
A very minor issue tangentially related to #2140: `fmpz_poly_randtest_irreducible(u, 0x7ffd631cdc50, 1, 10);` seems to go into an infinite loop although, over the integers, there are plenty of irreducible polynomials satisfying...
As a small step toward #1881, I have started porting to plain FLINT a small piece of `ore_algebra.analytic`. It is still very much a work in progress (important pieces are...