basic routines for ContFrac

This commit is contained in:
2022-02-18 16:10:31 +01:00
parent 5544ea4ee7
commit 10985a146b
4 changed files with 178 additions and 3 deletions

View File

@@ -30,6 +30,8 @@ namespace LA {
template <typename T>
class Polynomial : public NRVec<T> {
private:
int size() const; //prevent confusion with vector size
public:
Polynomial(): NRVec<T>() {};
template<int SIZE> Polynomial(const T (&a)[SIZE]) : NRVec<T>(a) {};