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.
1 parent 614f040 commit 2e45266Copy full SHA for 2e45266
src/Operators/functionals/Evaluation.jl
@@ -81,7 +81,7 @@ _eval(f, x) = f(x)
81
_eval(f, x::SpecialEvalPtType) = boundaryevalfn(x)(f)
82
function getindex(D::ConcreteEvaluation,k::Integer)
83
T = prectype(domainspace(D))
84
- f = Fun(D.space, [zeros(T,k-1); one(T)])
+ f = D.space(k-1)
85
df = differentiate(f,D.order)
86
v = _eval(df, D.x)
87
strictconvert(eltype(D), v)
0 commit comments