mirror of
https://src.fedoraproject.org/rpms/sagemath.git
synced 2025-04-21 11:19:02 -04:00
- Drop upstreamed -giac patch. - Add -sagetex patch to fix a python indentation error. - Add -rubiks patch to fix compilation of the rubiks library. - Add -random patch to fix a non-random random bit generator. - Drop pip3 workaround; the binary is now named just pip again.
14 lines
592 B
Diff
14 lines
592 B
Diff
diff -up src/sage/numerical/backends/coin_backend.pyx.orig src/sage/numerical/backends/coin_backend.pyx
|
|
--- src/sage/numerical/backends/coin_backend.pyx.orig 2018-12-22 16:37:09.000000000 -0700
|
|
+++ src/sage/numerical/backends/coin_backend.pyx 2019-01-16 09:45:52.386577640 -0700
|
|
@@ -780,8 +780,8 @@ cdef class CoinBackend(GenericBackend):
|
|
model.setLogLevel(old_logLevel)
|
|
|
|
# multithreading
|
|
- import multiprocessing
|
|
- model.setNumberThreads(ncpus())
|
|
+ #import multiprocessing
|
|
+ #model.setNumberThreads(ncpus())
|
|
|
|
model.branchAndBound()
|
|
|