Re: [sage-devel] SAGE_NUM_THREADS

2025-03-12 Thread Dima Pasechnik
I just bumped it in https://github.com/sagemath/sage/pull/39680 Please review. On Tue, Mar 11, 2025 at 8:30 PM John H Palmieri wrote: > > I think the problem is Sphinx: my guess is that when the Sphinx version got > bumped in https://github.com/sagemath/sage/pull/39577, sphinxcontrib-htmlhelp >

Re: [sage-devel] sage.all not available

2025-03-12 Thread Stefano Simonucci
Yes. You are right. I recompiled sage and it works now. Thank you Stefano On 11/03/25 22:49, Dima Pasechnik wrote: On Tue, Mar 11, 2025 at 4:15 PM Stefano Simonucci wrote: I get the following error message if I try to start sage. ┌

[sage-devel] Bug in Polyhedral complex

2025-03-12 Thread Leif Jacob
Hi, I noticed a little bug in sage/geometry/polyhedral_complex. In line 1613 of is_convex the program calculates center = sum(vertices) / len(vertices) If the complex has no relative boundary cells (self.relative_boundary_cells()==[]) then "vertices" is an empty list. Thus, causing a divi

Re: [sage-devel] SAGE_NUM_THREADS

2025-03-12 Thread John H Palmieri
By the way, we might want to modify sage.parallel.ncpus.ncpus for Python 3.13 to use process_cpu_count instead of cpu_count, since as of Python 3.13, this is what Python's multiprocessing package does. On Wednesday, March 12, 20

[sage-devel] Re: Bug in Polyhedral complex

2025-03-12 Thread dmo...@deductivepress.ca
Thanks for the bug report. I have opened sagemath issue #39689 on github for this. On Wednesday, March 12, 2025 at 7:47:31 AM UTC-6 leif@gmail.com wrote: > Hi, > > I noticed a little bug in sage/