Skip to content

Commit 45377f4

Browse files
committed
Cargo fmt
1 parent a23a0c0 commit 45377f4

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/branchrule.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,10 @@ mod tests {
229229
&cons().eq(0.0).coef(&vars[0], 1.).coef(&vars[1], -1.),
230230
);
231231

232-
model.add_cons_node(&child2, &cons().eq(1.0).coef(&vars[0], 1.).coef(&vars[1], 1.));
232+
model.add_cons_node(
233+
&child2,
234+
&cons().eq(1.0).coef(&vars[0], 1.).coef(&vars[1], 1.),
235+
);
233236

234237
// model.add_cons_node(child1, vec![&vars[0], &vars[1]], &[1., -1.], 0., 0., "eq");
235238
// model.add_cons_node(child2, vec![&vars[0], &vars[1]], &[1., 1.], 0., 1., "diff");

0 commit comments

Comments
 (0)