Closed jlperla closed 2 years ago
To add in somehing like
sylvester_solver = :MatrixEquations
As a default, where we can have it as :MatrixEquations vs. :GeneralizedSylvesterSolver and pick whichever one works the best for now.
:MatrixEquations
:GeneralizedSylvesterSolver
if settings.sylvester_solver == :GeneralizedSylvesterSolver ws = GeneralizedSylvesterWs(n, n, n_x, 2) generalized_sylvester_solver!(buff.A, buff.C, c.h_x, buff.E, 2, ws) else # whatever the old code was end
To add in somehing like
As a default, where we can have it as
:MatrixEquations
vs.:GeneralizedSylvesterSolver
and pick whichever one works the best for now.