Searched refs:LinearTransform (Results 1 – 6 of 6) sorted by relevance
15 LinearTransform::LinearTransform(Matrix &&oMatrix) : matrix(oMatrix) {} in LinearTransform() function in LinearTransform16 LinearTransform::LinearTransform(const Matrix &oMatrix) : matrix(oMatrix) {} in LinearTransform() function in LinearTransform33 std::pair<unsigned, LinearTransform>34 LinearTransform::makeTransformToColumnEchelon(Matrix m) { in makeTransformToColumnEchelon()112 return {echelonCol, LinearTransform(std::move(resultMatrix))}; in makeTransformToColumnEchelon()115 IntegerRelation LinearTransform::applyTo(const IntegerRelation &rel) const { in applyTo()
3 LinearTransform.cpp
789 std::pair<unsigned, LinearTransform> result = in findIntegerSample()790 LinearTransform::makeTransformToColumnEchelon(std::move(m)); in findIntegerSample()791 const LinearTransform &transform = result.second; in findIntegerSample()
23 class LinearTransform {25 explicit LinearTransform(Matrix &&oMatrix);26 explicit LinearTransform(const Matrix &oMatrix);34 static std::pair<unsigned, LinearTransform>
18 std::pair<unsigned, LinearTransform> result = in testColumnEchelonForm()19 LinearTransform::makeTransformToColumnEchelon(m); in testColumnEchelonForm()22 LinearTransform transform = result.second; in testColumnEchelonForm()
7551 mlir/include/mlir/Analysis/Presburger/LinearTransform.h7931 mlir/lib/Analysis/Presburger/LinearTransform.cpp