Skip to content

Commit ecb6117

Browse files
committed
style: formatting
1 parent 32159c8 commit ecb6117

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/Evaluate.jl

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -503,15 +503,17 @@ end
503503
$nuna,
504504
i -> i == op_idx, # COV_EXCL_LINE
505505
i -> let op = operators.unaops[i] # COV_EXCL_LINE
506-
if fused && get_child(tree, 1).degree == 2 &&
506+
if fused &&
507+
get_child(tree, 1).degree == 2 &&
507508
get_child(get_child(tree, 1), 1).degree == 0 &&
508509
get_child(get_child(tree, 1), 2).degree == 0
509510
# op(op2(x, y)), where x, y, z are constants or variables.
510511
l_op_idx = get_child(tree, 1).op
511512
dispatch_deg1_l2_ll0_lr0_eval(
512513
tree, cX, op, l_op_idx, operators.binops, eval_options
513514
)
514-
elseif fused && get_child(tree, 1).degree == 1 &&
515+
elseif fused &&
516+
get_child(tree, 1).degree == 1 &&
515517
get_child(get_child(tree, 1), 1).degree == 0
516518
# op(op2(x)), where x is a constant or variable.
517519
l_op_idx = get_child(tree, 1).op

0 commit comments

Comments
 (0)