We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
shuffle_down
TaylorBundle
ExplicitBundle
1 parent 4aab1d7 commit bba2b88Copy full SHA for bba2b88
src/stage1/forward.jl
@@ -27,10 +27,10 @@ end
27
28
function shuffle_down(b::TaylorBundle{N, B}) where {N, B}
29
Base.@constprop :aggressive function _sdown(i::Int64)
30
- ExplicitTangentBundle{1}(b.tangent.coeffs[i], (b.tangent.coeffs[i+1],))
+ TaylorBundle{1}(b.tangent.coeffs[i], (b.tangent.coeffs[i+1],))
31
end
32
TaylorBundle{N-1}(
33
- ExplicitTangentBundle{1}(b.primal, (b.tangent.coeffs[1],)),
+ TaylorBundle{1}(b.primal, (b.tangent.coeffs[1],)),
34
ntuple(_sdown, N-1))
35
36
0 commit comments