comparison src/LazyTensors/lazy_tensor_operations.jl @ 1357:74ceac9c91e4 feature/variable_derivatives

Readd deleted line to avoid diff against default
author Jonatan Werpers <jonatan@werpers.com>
date Thu, 09 Feb 2023 08:43:07 +0100
parents 49d03d1169ef
children 4684c7f1c4cb
comparison
equal deleted inserted replaced
1356:49d03d1169ef 1357:74ceac9c91e4
312 function Base.showerror(io::IO, err::DomainSizeMismatch) 312 function Base.showerror(io::IO, err::DomainSizeMismatch)
313 print(io, "DomainSizeMismatch: ") 313 print(io, "DomainSizeMismatch: ")
314 print(io, "domain size $(domain_size(err.tm)) of LazyTensor not matching size $(err.sz)") 314 print(io, "domain size $(domain_size(err.tm)) of LazyTensor not matching size $(err.sz)")
315 end 315 end
316 316
317
317 struct RangeSizeMismatch <: Exception 318 struct RangeSizeMismatch <: Exception
318 tm::LazyTensor 319 tm::LazyTensor
319 sz 320 sz
320 end 321 end
321 322