Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
CoinBackend: _test_solve fails on 32-bit
Browse files Browse the repository at this point in the history
  • Loading branch information
jdemeyer committed Sep 8, 2016
1 parent 8246a66 commit 33ad25e
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/sage/numerical/backends/coin_backend.pyx
Expand Up @@ -34,9 +34,10 @@ cdef class CoinBackend(GenericBackend):
General backend testsuite::
sage: from sage.numerical.backends.generic_backend import get_solver
sage: p = get_solver(solver = "Coin") # optional - cbc
sage: TestSuite(p).run(skip="_test_pickling") # optional - cbc
sage: from sage.numerical.backends.generic_backend import get_solver
sage: p = get_solver(solver="Coin") # optional - cbc
sage: TestSuite(p).run() # known bug on 32 bit
sage: TestSuite(p).run(skip=["_test_pickling", "_test_solve"]) # optional - cbc
"""

def __cinit__(self, maximization = True):
Expand Down

0 comments on commit 33ad25e

Please sign in to comment.