Skip to content

Commit 04159d7

Browse files
committed
format
1 parent 3310f87 commit 04159d7

File tree

1 file changed

+3
-9
lines changed

1 file changed

+3
-9
lines changed

src/HarmonicEquation.jl

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@ mutable struct HarmonicEquation
2525
nat_eq::DifferentialEquation,
2626
)
2727
return (
28-
x = new(
28+
x=new(
2929
equations,
3030
variables,
3131
Num[],
3232
nat_eq,
3333
dummy_symbolic_Jacobian(length(variables)),
3434
);
35-
x.parameters = _parameters(x);
35+
x.parameters=_parameters(x);
3636
x
3737
)
3838
end
@@ -56,13 +56,7 @@ mutable struct HarmonicEquation
5656
parameters::Vector{Num},
5757
jacobian::Matrix{Num},
5858
)
59-
return new(
60-
equations,
61-
variables,
62-
parameters,
63-
DifferentialEquation(),
64-
jacobian,
65-
)
59+
return new(equations, variables, parameters, DifferentialEquation(), jacobian)
6660
end
6761
end
6862

0 commit comments

Comments
 (0)