We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1828c9c commit b19b069Copy full SHA for b19b069
src/analysis/lattice.jl
@@ -234,8 +234,7 @@ function Base.show(io::IO, inc::Incidence)
234
!first && print(io, " + ")
235
first = false
236
if is_grouped(inc.row[1], 1) && v.time_dependent
237
- ᵢ = subscript(i - 1)
238
- print(io, "$(propto(inc.row[1]::Linearity))t", " * ")
+ print(io, propto(inc.row[1]::Linearity), 't', " * ")
239
else # unknown constant coefficient
240
print(io, propto(v))
241
end
@@ -265,6 +264,7 @@ end
265
264
266
"""
267
incidence"a + f(∝ₛt, u₁)"
+ incidence"Incidence(a + f(∝ₛt, u₁))" # you may copy-paste straight from its printed output
268
269
Construct an [`Incidence`](@ref) from its printed representation.
270
0 commit comments