#include <stator/symbolic/numeric.hpp>
#include <stator/exception.hpp>
#include <stator/config.hpp>
#include <stdexcept>
#include <ostream>
#include <array>
#include <tuple>
Go to the source code of this file.
|
| | sym |
| | The stator symbolic math library.
|
| |
| | sym::detail |
| | Namespace containing the details of the implmentation for general stator components.
|
| |
|
| template<size_t NewOrder, size_t Order, class Coeff_t , class PolyVar > |
| Polynomial< NewOrder, Coeff_t, PolyVar > | sym::change_order (const Polynomial< Order, Coeff_t, PolyVar > &f) |
| | Change the order of a Polynomial. More...
|
| |
| template<size_t Order, class Coeff_t , class PolyVar > |
| Polynomial< Order-2, Coeff_t, PolyVar > | sym::detail::mrem (const Polynomial< Order, Coeff_t, PolyVar > &f, const Polynomial< Order-1, Coeff_t, PolyVar > &g) |
| | Calculates the negative of the remainder of the division of by . More...
|
| |
| template<size_t Order, class Coeff_t , class PolyVar > |
| std::ostream & | sym::detail::operator<< (std::ostream &os, const SturmChain< Order, Coeff_t, PolyVar > &c) |
| |