Skip to content

Commit e0fd198

Browse files
committed
Small fixes
1 parent e906485 commit e0fd198

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

benchmark/benchmarks.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ const SUITE = BenchmarkGroup()
1616
# SUITE["SCS"] = ProblemDepot.benchmark_suite(p -> Convex.solve!(p, SCSSolver(verbose=0)))
1717
# SUITE["ECOS"] = ProblemDepot.benchmark_suite(p -> Convex.solve!(p, ECOSSolver(verbose=0));
1818
# exclude = [r"sdp", r"exp"])
19-
SUITE["formulation"] = ProblemDepot.benchmark_suite(Convex.conic_problem; exclude=[r"fix"])
19+
SUITE["formulation"] = ProblemDepot.benchmark_suite(Convex.conic_problem)

src/problem_depot/problem_depot.jl

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# Some code in `src/problem_depot` was modified from MathOptInterface
22
# which is available under an MIT license (see LICENSE).
3+
34
module ProblemDepot
45
using BenchmarkTools, Test
56

test/runtests.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,5 +39,5 @@ end
3939
run_tests(; exclude=[r"socp", r"sdp", r"exp"]) do p
4040
solve!(p, GLPKSolverMIP())
4141
end
42-
end
42+
end
4343
end

0 commit comments

Comments
 (0)