Gonzalo Tornaría
Gonzalo Tornaría
> You can just `pip install .` as with every other python project. Or use use `meson install`. See https://doc.sagemath.org/html/en/installation/meson.html#background-information for build instructions. pip is not distro-friendly (I'd say it's...
Maybe related: there seems to be no way to select font by size. For example, ``` #set text(font: "Latin Modern Sans", size: 17pt) Hello, world! ``` uses an 8pt font:...
Indeed, pari has a "default display precision": ``` sage: pari.default("realprecision") 15 sage: pari(RealField(100)(sqrt(2))) 1.41421356237310 sage: pari.default("realprecision", 100) sage: pari(RealField(100)(sqrt(2))) 1.41421356237309504880168872420917624993 sage: pari(RealField(335)(sqrt(2))) 1.414213562373095048801688724209698078569671875376948073176679737990732478462107038850387534327641573 ``` Note that it won't print 100...
I would say: don't touch any files. Just check and warn. If you want, you can tell me which command to use to autoformat, but do not run any command...
There seems to be a major issue with pari 2.17: the computation of the units of a bnf is not deterministic: ``` ? setrand(1) ; bnfinit(x^2-65).fu %1 = [Mod(x -...
@antonio-rojas I can reproduce it deterministically with pari 2.15 and 2.17 with this change: ```diff --- a/src/sage/rings/integer.pyx 2024-08-23 10:46:19.000000000 -0300 +++ b/src/sage/rings/integer.pyx 2024-11-06 11:23:36.666702122 -0300 @@ -3075,9 +3075,9 @@ so...
> > There seems to be a major issue with pari 2.17: the computation of the units of a bnf is not deterministic: > > Yes, see [#38749 (comment)](https://github.com/sagemath/sage/pull/38749#issuecomment-2395402169). I...
BTW: I'm preparing a patch for 32-bit. Besides all the unstability, pari 2.17 changed the default real precision to be 128 bits for both 64-bit and 32-bit arches (previously it...
More updates in https://github.com/antonio-rojas/sage/pull/4
See: https://github.com/sagemath/cypari2/pull/165#issuecomment-2481950717