Mercurial > repos > public > sbplib_julia
diff src/LazyTensors/LazyTensors.jl @ 1328:f00a205ae347 refactor/grids
Merge default
| author | Jonatan Werpers <jonatan@werpers.com> |
|---|---|
| date | Tue, 02 May 2023 20:14:39 +0200 |
| parents | a922aa69eb83 |
| children | dfb43fdac9fc 8b64df6cadba |
line wrap: on
line diff
--- a/src/LazyTensors/LazyTensors.jl Tue May 02 20:14:24 2023 +0200 +++ b/src/LazyTensors/LazyTensors.jl Tue May 02 20:14:39 2023 +0200 @@ -30,6 +30,7 @@ # Composing lazy tensors Base.:∘(s::LazyTensor, t::LazyTensor) = TensorComposition(s,t) +Base.:∘(s::TensorComposition, t::LazyTensor) = s.t1∘(s.t2∘t) # Outer products of tensors ⊗(a::LazyTensor, b::LazyTensor) = LazyOuterProduct(a,b)
