Home
last modified time | relevance | path

Searched refs:isBounded (Results 1 – 5 of 5) sorted by relevance

/llvm-project-15.0.7/mlir/lib/Analysis/Presburger/
H A DSimplex.cpp1370 return computeOptimum(Direction::Up, con[constraintIndex]).isBounded(); in isBoundedAlongConstraint()
1640 assert(maybeWidth.isBounded() && "Width should be bounded!"); in computeWidth()
1660 assert(maybeWidth.isBounded() && "Width should be bounded!"); in computeWidthAndDuals()
2011 assert((minRoundedUp.isBounded() && maxRoundedDown.isBounded()) && in findIntegerSample()
2146 if (minimum.isBounded() && *minimum >= Fraction(0, 1)) { in findIneqType()
2150 if ((!minimum.isBounded() || *minimum <= Fraction(0, 1)) && in findIneqType()
2151 (!maximum.isBounded() || *maximum >= Fraction(0, 1))) { in findIneqType()
2176 return minimum.isBounded() && maximum.isBounded() && in isRedundantEquality()
H A DIntegerRelation.cpp92 if (!maybeLexMin.isBounded()) in findRationalLexMin()
112 if (!maybeLexMin.isBounded()) in findIntegerLexMin()
/llvm-project-15.0.7/mlir/unittests/Analysis/Presburger/
H A DIntegerPolyhedronTest.cpp76 if (maybeLexMin.isBounded()) { in checkSample()
88 if (maybeLexMin.isBounded()) { in checkSample()
1068 ASSERT_TRUE(lexMin.isBounded()); in expectRationalLexMin()
1140 ASSERT_TRUE(lexMin.isBounded()); in expectIntegerLexMin()
H A DSimplexTest.cpp412 EXPECT_TRUE(maxX.isBounded() && *maxX == Fraction(-1, 1)); in TEST()
/llvm-project-15.0.7/mlir/include/mlir/Analysis/Presburger/
H A DUtils.h51 bool isBounded() const { return kind == OptimumKind::Bounded; } in isBounded() function