Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/systems/abstractsystem.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2116,6 +2116,8 @@ function n_expanded_connection_equations(sys::AbstractSystem)
nextras = n_outer_stream_variables + length(ceqs) + n_variable_connect_eqs
end

Base.show(io::IO, sys::AbstractSystem; kws...) = show(io, MIME"text/plain"(), sys; kws...)

function Base.show(
io::IO, mime::MIME"text/plain", sys::AbstractSystem; hint = true, bold = true)
limit = get(io, :limit, false) # if output should be limited,
Expand Down
Loading