# | Line 50 | Line 50 | |
---|---|---|
50 | #define MATH_CHEBYSHEVPOLYNOMIALS_HPP | |
51 | ||
52 | #include <vector> | |
53 | + | #include <cassert> |
54 | ||
55 | #include "math/Polynomial.hpp" | |
56 | ||
# | Line 63 | Line 64 | namespace oopse { | |
64 | class ChebyshevPolynomials { | |
65 | public: | |
66 | ChebyshevPolynomials(int maxPower); | |
67 | < | |
67 | > | virtual ~ChebyshevPolynomials() {} |
68 | /** | |
69 | * Calculates the value of the nth Chebyshev Polynomial evaluated at the given x value. | |
70 | * @return The value of the nth Chebyshev Polynomial evaluates at the given x value |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |