Skip to content

Commit 8521943

Browse files
committed
Update
1 parent 76bb0e8 commit 8521943

File tree

3 files changed

+90
-7
lines changed

3 files changed

+90
-7
lines changed
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
2 & 200 & \texttt{Dichotomy} & Gurobi & 34.7 & 69.0 & 1 & 90 \\
2-
2 & 200 & \texttt{Dichotomy} & HiGHS & 34.9 & 3571.1 & 125 & 98 \\
1+
2 & 200 & \texttt{Dichotomy} & Gurobi & 34.7 & 68.9 & 1 & 88 \\
2+
2 & 200 & \texttt{Dichotomy} & HiGHS & 34.9 & 68.1 & 6 & 98 \\
33
2 & 200 & \texttt{EpsilonConstraint} & Gurobi & 405.4 & 813.8 & 29 & 99 \\
44
2 & 200 & \texttt{EpsilonConstraint} & HiGHS & 405.4 & 813.8 & 351 & 100 \\
5-
2 & 200 & \texttt{TambyVanderpooten} & Gurobi & 405.4 & 818.2 & 30 & 99 \\
6-
2 & 200 & \texttt{TambyVanderpooten} & HiGHS & 405.4 & 818.6 & 365 & 100 \\
7-
3 & 100 & \texttt{TambyVanderpooten} & Gurobi & 3341.6 & 12717.1 & 583 & 97 \\
8-
4 & 50 & \texttt{TambyVanderpooten} & Gurobi & 1799.4 & 13699.7 & 506 & 69 \\
5+
2 & 200 & \texttt{TambyVanderpooten} & Gurobi & 405.4 & 818.2 & 31 & 99 \\
6+
2 & 200 & \texttt{TambyVanderpooten} & HiGHS & 405.4 & 818.6 & 366 & 100 \\
7+
3 & 100 & \texttt{TambyVanderpooten} & Gurobi & 4090.0 & 14724.4 & 673 & 97 \\
8+
4 & 50 & \texttt{TambyVanderpooten} & Gurobi & 2240.1 & 20570.2 & 1042 & 68 \\

papers/Dowson_et_al_2026/main.jl

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ function solve_tamby_mokp(;
2828
C = reduce(vcat, [Float64.(x.args) for x in Meta.parse(lines[4]).args]')
2929
w = Meta.parse(lines[5]).args
3030
model = Model(() -> MOA.Optimizer(optimizer))
31-
set_time_limit_sec(model, time_limit)
31+
# set_time_limit_sec(model, time_limit)
3232
if silent
3333
set_silent(model)
3434
end
@@ -70,6 +70,9 @@ results_filename = "results.log"
7070
results = Any[]
7171
for ((p, n), (algorithms, solvers)) in TESTSETS, instance in 1:10
7272
for alg in algorithms, solver in solvers
73+
if !((p, instance) in [(4, 8)])
74+
continue
75+
end
7376
algorithm, optimizer = ALGORITHMS[alg], OPTIMIZERS[solver]
7477
println("Running: p-$(p)_n-$(n)_$(instance) :: $alg :: $solver")
7578
ret = solve_tamby_mokp(; p, n, instance, optimizer, algorithm)

0 commit comments

Comments
 (0)