Skip to content

Commit b986d51

Browse files
committed
🤖 Format .jl files
1 parent a6e1b25 commit b986d51

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/TimedOperators.jl

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ using TimerOutputs
22

33
export TimedLinearOperator
44

5-
mutable struct TimedLinearOperator{T, OP <: AbstractLinearOperator{T}, F, Ft, Fct} <: AbstractLinearOperator{T}
5+
mutable struct TimedLinearOperator{T, OP <: AbstractLinearOperator{T}, F, Ft, Fct} <:
6+
AbstractLinearOperator{T}
67
timer::TimerOutput
78
op::OP
89
prod!::F
@@ -16,7 +17,8 @@ TimedLinearOperator{T}(
1617
prod!::F,
1718
tprod!::Ft,
1819
ctprod!::Fct,
19-
) where {T, F, Ft, Fct} = TimedLinearOperator{T, typeof(op), F, Ft, Fct}(timer, op, prod!, tprod!, ctprod!)
20+
) where {T, F, Ft, Fct} =
21+
TimedLinearOperator{T, typeof(op), F, Ft, Fct}(timer, op, prod!, tprod!, ctprod!)
2022

2123
"""
2224
TimedLinearOperator(op)

0 commit comments

Comments
 (0)