Skip to content

Commit c2728e5

Browse files
committed
Fix format
1 parent 37fee76 commit c2728e5

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

benchmark/benchmarks.jl

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ function model_sparse(F, C, P, T, D, U, V, W)
296296
# Variable creation
297297
@variable(
298298
m,
299-
x[factory = F, customer = C, product = P, period = T],
299+
x[factory=F, customer=C, product=P, period=T],
300300
container = IndexedVarArray
301301
)
302302

@@ -338,10 +338,10 @@ function model_sparse_aa(F, C, P, T, D, U, V, W)
338338
@variable(
339339
m,
340340
x[
341-
factory = F,
342-
customer = C,
343-
product = P,
344-
period = T;
341+
factory=F,
342+
customer=C,
343+
product=P,
344+
period=T;
345345
W[factory, product] == 1 && (factory, product, period) in keys(D),
346346
] >= 0,
347347
)

0 commit comments

Comments
 (0)