Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
kmp5VT committed Dec 14, 2023
1 parent e4a1589 commit a5245c3
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ function allocate_output(
# TODO: Define `output_structure(contract, alg, labels_dest, a1::AbstractArray, labels1, a2::AbstractArray, labels2, α, β)`.
# TODO: Define `allocate(type, structure)`.
elt = promote_type(eltype(a1), eltype(a2))
array = set_parameter(set_parameter(typeof(a1), Position{1}(), elt), Position{2}(), length(axes_dest))
array = set_parameter(
set_parameter(typeof(a1), Position{1}(), elt), Position{2}(), length(axes_dest)
)
return array(undef, length.(axes_dest))
end

Expand Down

0 comments on commit a5245c3

Please sign in to comment.