-
Notifications
You must be signed in to change notification settings - Fork 65
Closed
Labels
Structural TangentRelated to the `Tangent` type for structured (composite) valuesRelated to the `Tangent` type for structured (composite) valuesenhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomerspending-clear-needWe are not certain we need this. So waiting for evidence to be presentedWe are not certain we need this. So waiting for evidence to be presented
Description
I guess these are a special case of things with constrained values, maybe?
Anyway, the following
function make_foo(a_number)
return x -> a_number * x
end
foo = make_foo(5.0)
foo + Composite{typeof(foo)}(; a_number=4.0)
yields
ERROR: MethodError: no method matching var"#44#45"{Float64}(::Float64)
Stacktrace:
[1] macro expansion at /Users/willtebbutt/.julia/packages/ChainRulesCore/leg7n/src/differentials/composite.jl:0 [inlined]
[2] construct(::Type{var"#44#45"{Float64}}, ::NamedTuple{(:a_number,),Tuple{Float64}}) at /Users/willtebbutt/.julia/packages/ChainRulesCore/leg7n/src/differentials/composite.jl:168
[3] +(::var"#44#45"{Float64}, ::Composite{var"#44#45"{Float64},NamedTuple{(:a_number,),Tuple{Float64}}}) at /Users/willtebbutt/.julia/packages/ChainRulesCore/leg7n/src/differential_arithmetic.jl:96
[4] top-level scope at REPL[40]:1
[5] eval(::Module, ::Any) at ./boot.jl:331
[6] eval_user_input(::Any, ::REPL.REPLBackend) at /Users/julia/buildbot/worker/package_macos64/build/usr/share/julia/stdlib/v1.4/REPL/src/REPL.jl:86
[7] run_backend(::REPL.REPLBackend) at /Users/willtebbutt/.julia/packages/Revise/BqeJF/src/Revise.jl:1184
[8] top-level scope at REPL[2]:0
which I think stems from the fact that we're not able to create new instances of foo
using the current approach.
Metadata
Metadata
Assignees
Labels
Structural TangentRelated to the `Tangent` type for structured (composite) valuesRelated to the `Tangent` type for structured (composite) valuesenhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomerspending-clear-needWe are not certain we need this. So waiting for evidence to be presentedWe are not certain we need this. So waiting for evidence to be presented