MLIR
20.0.0git
|
#include "mlir/Support/LLVM.h"
#include "llvm/ADT/APFloat.h"
#include "llvm/ADT/APInt.h"
#include "llvm/ADT/ArrayRef.h"
#include "llvm/ADT/Hashing.h"
#include "llvm/ADT/SmallString.h"
#include "llvm/ADT/Twine.h"
#include "llvm/Support/raw_ostream.h"
Go to the source code of this file.
Classes | |
class | mlir::polynomial::MonomialBase< Derived, CoefficientType > |
class | mlir::polynomial::IntMonomial |
A class representing a monomial of a single-variable polynomial with integer coefficients. More... | |
class | mlir::polynomial::FloatMonomial |
A class representing a monomial of a single-variable polynomial with integer coefficients. More... | |
class | mlir::polynomial::PolynomialBase< Derived, Monomial > |
class | mlir::polynomial::IntPolynomial |
A single-variable polynomial with integer coefficients. More... | |
class | mlir::polynomial::FloatPolynomial |
A single-variable polynomial with double coefficients. More... | |
Namespaces | |
mlir | |
Include the generated interface declarations. | |
mlir::polynomial | |
Functions | |
template<class D , typename T > | |
inline ::llvm::hash_code | mlir::polynomial::hash_value (const PolynomialBase< D, T > &arg) |
template<class D , typename T > | |
inline ::llvm::hash_code | mlir::polynomial::hash_value (const MonomialBase< D, T > &arg) |
template<class D , typename T > | |
raw_ostream & | mlir::polynomial::operator<< (raw_ostream &os, const PolynomialBase< D, T > &polynomial) |
Variables | |
constexpr unsigned | mlir::polynomial::apintBitWidth = 64 |
This restricts statically defined polynomials to have at most 64-bit coefficients. More... | |