Skip to content

Commit bd81f70

Browse files
format
1 parent 40008f0 commit bd81f70

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/systems/diffeqs/odesystem.jl

+2-1
Original file line numberDiff line numberDiff line change
@@ -525,7 +525,8 @@ function convert_system(::Type{<:ODESystem}, sys, t; name = nameof(sys))
525525
newsts[i] = s
526526
continue
527527
end
528-
ns = maketerm(typeof(s), operation(s), Any[t], SymbolicUtils.symtype(s), SymbolicUtils.metadata(s))
528+
ns = maketerm(typeof(s), operation(s), Any[t],
529+
SymbolicUtils.symtype(s), SymbolicUtils.metadata(s))
529530
newsts[i] = ns
530531
varmap[s] = ns
531532
else

src/variables.jl

+2-1
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,8 @@ ishistory(x) = ishistory(unwrap(x))
232232
ishistory(x::Symbolic) = getmetadata(x, IsHistory, false)
233233
hist(x, t) = wrap(hist(unwrap(x), t))
234234
function hist(x::Symbolic, t)
235-
setmetadata(toparam(maketerm(typeof(x), operation(x), [unwrap(t)], symtype(x), metadata(x))),
235+
setmetadata(
236+
toparam(maketerm(typeof(x), operation(x), [unwrap(t)], symtype(x), metadata(x))),
236237
IsHistory, true)
237238
end
238239

0 commit comments

Comments
 (0)