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.
2 parents 9cae206 + bba2b88 commit 7be0a92Copy full SHA for 7be0a92
src/stage1/forward.jl
@@ -26,10 +26,10 @@ end
26
27
function shuffle_down(b::TaylorBundle{N, B}) where {N, B}
28
Base.@constprop :aggressive function _sdown(i::Int64)
29
- ExplicitTangentBundle{1}(b.tangent.coeffs[i], (b.tangent.coeffs[i+1],))
+ TaylorBundle{1}(b.tangent.coeffs[i], (b.tangent.coeffs[i+1],))
30
end
31
TaylorBundle{N-1}(
32
- ExplicitTangentBundle{1}(b.primal, (b.tangent.coeffs[1],)),
+ TaylorBundle{1}(b.primal, (b.tangent.coeffs[1],)),
33
ntuple(_sdown, N-1))
34
35
0 commit comments