Laguerre polynomials
Loading...
Searching...
No Matches
BaseSolver.h
Go to the documentation of this file.
1#ifndef BASESOLVER_H
2#define BASESOLVER_H
3
4#include<vector>
5
6template<typename T>
7class BaseSolver {
8public:
16 virtual void operator()(std::vector<T>& coeff, std::vector<std::complex<T>>& roots, std::vector<int>& conv, int itmax) = 0;
17};
18
19#endif
Definition BaseSolver.h:7
virtual void operator()(std::vector< T > &coeff, std::vector< std::complex< T > > &roots, std::vector< int > &conv, int itmax)=0
Find the roots of a polynomial.