dmitryikh / nla3d

2D/3D finite element programming framework
MIT License
29 stars 11 forks source link

licensing free EquationSolver class implementation #4

Closed dmitryikh closed 7 years ago

dmitryikh commented 9 years ago

Here is nla3d::math::EquationSolver base abstract class for linear equations system solvers. For now, here is a single realization of this class named PARDISO_EquationSolver which uses MKL' PARDISO routines to solve large sparse systems of linear equation.

We need to have an another realization of a equation solver with free license. This could be a simple in-house realization, or adapted open source version of well known solver.

dmitryikh commented 7 years ago

Now here is math::GaussDenseEquationSolver for such task.