Skip to content

Commit

Permalink
introduce properly
Browse files Browse the repository at this point in the history
  • Loading branch information
sshin23 committed Feb 17, 2021
1 parent a6b532a commit 8e0d6ad
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/LinearSolvers/schur.jl
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,11 @@ function improve!(M::Solver)
return true
end

introduce(M::Solver)="schur equipped with "*introduce(M.sws[1].M)
function introduce(M::Solver)
for sw in M.sws
sw.M isa EmptyLinearSolver || return "schur equipped with "*introduce(sw.M)
end
end

end

Expand Down

0 comments on commit 8e0d6ad

Please sign in to comment.