Skip to content

Commit c968586

Browse files
authored
Increase lower bound for W1 in tilesearch.jl. (#59)
1 parent d47b39f commit c968586

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

benchmark/tilesearch.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ hours = 60.0*60.0; days = 24hours;
8080
init = [Octavian.W₁Default, Octavian.W₂Default, Octavian.R₁Default, Octavian.R₂Default]
8181

8282
opt = Optim.optimize(
83-
matmul_objective, init, ParticleSwarm(lower = [0.001, 0.01, 0.3, 0.4], upper = [0.1, 2.0, 0.9, 0.99]),
83+
matmul_objective, init, ParticleSwarm(lower = [0.001, 0.01, 0.3, 0.4], upper = [0.2, 2.0, 0.9, 0.99]),
8484
Optim.Options(iterations = 10^6, time_limit = 8hours)
8585
);
8686

0 commit comments

Comments
 (0)