Lines Matching defs:LinearTransform
1 //===- LinearTransform.cpp - MLIR LinearTransform Class -------------------===//
9 #include "mlir/Analysis/Presburger/LinearTransform.h"
17 LinearTransform::LinearTransform(IntMatrix &&oMatrix) : matrix(oMatrix) {}
18 LinearTransform::LinearTransform(const IntMatrix &oMatrix) : matrix(oMatrix) {}
20 std::pair<unsigned, LinearTransform>
21 LinearTransform::makeTransformToColumnEchelon(const IntMatrix &m) {
42 return {col, LinearTransform(std::move(u))};
45 IntegerRelation LinearTransform::applyTo(const IntegerRelation &rel) const {