From 24c31b0b831ac9b35e85ac4a15bec4bb310e25a4 Mon Sep 17 00:00:00 2001 From: Sheehan Olver Date: Mon, 1 Nov 2021 23:44:21 +0000 Subject: [PATCH] Update operators.jl --- src/operators.jl | 1 + 1 file changed, 1 insertion(+) diff --git a/src/operators.jl b/src/operators.jl index 92856c4..1951657 100644 --- a/src/operators.jl +++ b/src/operators.jl @@ -138,3 +138,4 @@ Identity(d::Inclusion) = QuasiDiagonal(d) @simplify *(D::Derivative, x::Inclusion) = ones(promote_type(eltype(D),eltype(x)), x) @simplify *(D::Derivative, c::AbstractQuasiFill) = zeros(promote_type(eltype(D),eltype(c)), axes(c,1)) +@simplify *(D::Derivative, x::AbstractAffineQuasiVector) = x.A * ones(promote_type(eltype(D),eltype(x)), axes(x,1)) \ No newline at end of file