Skip to content

Commit 1b6ea2d

Browse files
author
fchen121
committed
Fix function format
1 parent 68a9807 commit 1b6ea2d

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

Project.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,6 @@ OrdinaryDiffEq = "6.82.0"
144144
OrdinaryDiffEqCore = "1.15.0"
145145
OrdinaryDiffEqDefault = "1.2"
146146
OrdinaryDiffEqNonlinearSolve = "1.5.0"
147-
Plots = "1.40.15"
148147
PrecompileTools = "1"
149148
Pyomo = "0.1.0"
150149
REPL = "1"

src/systems/diffeqs/basic_transformations.jl

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,10 @@ prob = ODEProblem(sys, [], tspan)
342342
sol = solve(prob, radau5(), abstol = 1e-5, reltol = 1e-5)
343343
```
344344
"""
345-
function linear_fractional_to_ordinary(degrees, coeffs, rhs, epsilon, T; initials = 0, symbol = :x, iv = only(@independent_variables t), matrix=false)
345+
function linear_fractional_to_ordinary(
346+
degrees, coeffs, rhs, epsilon, T;
347+
initials = 0, symbol = :x, iv = only(@independent_variables t), matrix=false
348+
)
346349
previous = Symbol(symbol, :_, 0)
347350
previous = ModelingToolkit.unwrap(only(@variables $previous(iv)))
348351
@variables x_0(iv)

0 commit comments

Comments
 (0)