Skip to content

Commit 1a37c4c

Browse files
committed
Add Base.show for VSMSettings
1 parent 3be5632 commit 1a37c4c

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

mwes/mwe_04.jl

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,3 +27,12 @@ end
2727
solver_settings::SolverSettings = SolverSettings()
2828
end
2929

30+
function Base.show(io::IO, vs::VSMSettings)
31+
println(io, "VSMSettings:")
32+
for wing in vs.wings
33+
print(io, " ", replace(repr(wing), "\n" => "\n "))
34+
end
35+
print(io, replace(repr(vs.solver_settings), "\n" => "\n "))
36+
end
37+
vs = VSMSettings()
38+

0 commit comments

Comments
 (0)