We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b49db28 commit 896a8ecCopy full SHA for 896a8ec
test/polyhedron.jl
@@ -1,8 +1,10 @@
1
using Polyhedra
2
const polyhedra_test = joinpath(dirname(dirname(pathof(Polyhedra))), "test")
3
4
-include(joinpath(polyhedra_test, "solvers.jl"))
5
-
+import GLPK
+# Need `"presolve" => GLPK.ON` for `detect_new_linearities`, see
6
+# https://travis-ci.org/github/JuliaPolyhedra/Polyhedra.jl/jobs/691916637#L486
7
+lp_solver = MOI.OptimizerWithAttributes(GLPK.Optimizer, "presolve" => GLPK.GLP_ON, MOI.Silent() => true)
8
const LIB = QHull.Library(lp_solver)
9
10
@testset "Volume" begin
0 commit comments