File tree Expand file tree Collapse file tree 2 files changed +0
-9
lines changed
Expand file tree Collapse file tree 2 files changed +0
-9
lines changed Original file line number Diff line number Diff line change @@ -382,10 +382,6 @@ class AffineMap {
382382 // / Returns true if the AffineMap represents a symbol-less permutation map.
383383 bool isPermutation () const ;
384384
385- // Returns true if every result is monotonically increasing.
386- // See AffineExpr::isMonotonicallyIncreasing().
387- bool isComponentWiseMonotonicallyIncreasing () const ;
388-
389385 // / Returns the map consisting of the `resultPos` subset.
390386 AffineMap getSubMap (ArrayRef<unsigned > resultPos) const ;
391387
Original file line number Diff line number Diff line change @@ -651,11 +651,6 @@ bool AffineMap::isPermutation() const {
651651 return isProjectedPermutation ();
652652}
653653
654- bool AffineMap::isComponentWiseMonotonicallyIncreasing () const {
655- return all_of (getResults (),
656- [](auto expr) { return expr.isMonotonicallyIncreasing (); });
657- }
658-
659654AffineMap AffineMap::getSubMap (ArrayRef<unsigned > resultPos) const {
660655 SmallVector<AffineExpr, 4 > exprs;
661656 exprs.reserve (resultPos.size ());
You can’t perform that action at this time.
0 commit comments