You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Applied JuliaFormatter to ensure consistent code formatting across the entire codebase.
This includes formatting improvements to source files, documentation, and test files.
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <[email protected]>
@@ -187,19 +190,19 @@ operator for `A .* u` (since right now there is not a built in operator for vect
187
190
but that would be a fantastic thing to add!):
188
191
189
192
```@example getting_started
190
-
function Cfunc!(w,v,u,p,t)
193
+
function Cfunc!(w, v, u, p, t)
191
194
w[1] = -2v[1] + v[2]
192
195
for i in 2:4
193
-
w[i] = v[i-1] - 2v[i] + v[i+1]
196
+
w[i] = v[i - 1] - 2v[i] + v[i + 1]
194
197
end
195
198
w[5] = v[4] - 2v[5]
196
199
w .= w .* u
197
200
nothing
198
201
end
199
202
200
-
function Cfunc!(v,u,p,t)
203
+
function Cfunc!(v, u, p, t)
201
204
w = zeros(5)
202
-
Cfunc!(w,v,u,p,t)
205
+
Cfunc!(w, v, u, p, t)
203
206
w
204
207
end
205
208
@@ -227,11 +230,11 @@ adjoints, inverses, and more. For more information, see the [operator algebras t
227
230
Great! You now know how to be state/parameter/time-dependent operators and make them matrix-free, along with
228
231
doing algebras on operators. What's next?
229
232
230
-
* Interested in more examples of building operators? See the example of [making a fast fourier transform linear operator](@ref fft)
231
-
* Interested in more operators ready to go? See the [Premade Operators page](@ref premade_operators) for all of the operators included with SciMLOperators. Note that there are also downstream packages that make new operators.
232
-
* Want to make your own SciMLOperator? See the [AbstractSciMLOperator interface page](@ref operator_interface) which describes the full interface.
233
+
- Interested in more examples of building operators? See the example of [making a fast fourier transform linear operator](@ref fft)
234
+
- Interested in more operators ready to go? See the [Premade Operators page](@ref premade_operators) for all of the operators included with SciMLOperators. Note that there are also downstream packages that make new operators.
235
+
- Want to make your own SciMLOperator? See the [AbstractSciMLOperator interface page](@ref operator_interface) which describes the full interface.
233
236
234
237
How do you use SciMLOperators? Check out the following downstream pages:
235
238
236
-
*[Using SciMLOperators in LinearSolve.jl for matrix-free Krylov methods](https://docs.sciml.ai/LinearSolve/stable/tutorials/linear/)
237
-
*[Using SciMLOperators in OrdinaryDiffEq.jl for semi-linear ODE solvers](https://docs.sciml.ai/DiffEqDocs/stable/solvers/nonautonomous_linear_ode/)
239
+
-[Using SciMLOperators in LinearSolve.jl for matrix-free Krylov methods](https://docs.sciml.ai/LinearSolve/stable/tutorials/linear/)
240
+
-[Using SciMLOperators in OrdinaryDiffEq.jl for semi-linear ODE solvers](https://docs.sciml.ai/DiffEqDocs/stable/solvers/nonautonomous_linear_ode/)
0 commit comments