Skip to content

Commit 484dfcb

Browse files
authored
Merge pull request #2150 from SciML/myb/color
More visible color for unsolvable matched
2 parents 3a731e2 + 750c37a commit 484dfcb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/bipartite_graph.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ function Base.show(io::IO, l::BipartiteAdjacencyList)
251251
elseif matched && solvable
252252
:light_yellow
253253
elseif matched && !solvable
254-
:yellow
254+
:magenta
255255
end
256256
end
257257
if !isempty(setdiff(l.highligh_u, l.u))

src/systems/systemstructure.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -534,7 +534,7 @@ function Base.show(io::IO, mime::MIME"text/plain", ms::MatchedSystemStructure)
534534
print(io, " | ")
535535
printstyled(io, "Unsolvable", color = :light_black)
536536
print(io, " | ")
537-
printstyled(io, "(Unsolvable + Matched)", color = :yellow)
537+
printstyled(io, "(Unsolvable + Matched)", color = :magenta)
538538
print(io, " | ")
539539
printstyled(io, "", color = :cyan)
540540
printstyled(io, " SelectedState")

0 commit comments

Comments
 (0)