Home
last modified time | relevance | path

Searched refs:findIntegerSample (Results 1 – 8 of 8) sorted by relevance

/llvm-project-15.0.7/mlir/include/mlir/Analysis/Presburger/
H A DPresburgerRelation.h111 bool findIntegerSample(SmallVectorImpl<int64_t> &sample);
H A DSimplex.h782 Optional<SmallVector<int64_t, 8>> findIntegerSample();
H A DIntegerRelation.h340 Optional<SmallVector<int64_t, 8>> findIntegerSample() const;
/llvm-project-15.0.7/mlir/lib/Analysis/Presburger/
H A DPresburgerRelation.cpp462 bool PresburgerRelation::findIntegerSample(SmallVectorImpl<int64_t> &sample) { in findIntegerSample() function in PresburgerRelation
465 if (Optional<SmallVector<int64_t, 8>> opt = disjunct.findIntegerSample()) { in findIntegerSample()
H A DIntegerRelation.cpp719 bool IntegerRelation::isIntegerEmpty() const { return !findIntegerSample(); } in isIntegerEmpty()
766 Optional<SmallVector<int64_t, 8>> IntegerRelation::findIntegerSample() const { in findIntegerSample() function in IntegerRelation
777 return simplex.findIntegerSample(); in findIntegerSample()
806 Simplex(boundedSet).findIntegerSample(); in findIntegerSample()
912 return copy.findIntegerSample(); in containsPointNoLocal()
H A DSimplex.cpp1957 Optional<SmallVector<int64_t, 8>> Simplex::findIntegerSample() { in findIntegerSample() function in Simplex
/llvm-project-15.0.7/mlir/unittests/Analysis/Presburger/
H A DSimplexTest.cpp547 Optional<SmallVector<int64_t, 8>> sample = simplex.findIntegerSample(); in TEST()
H A DIntegerPolyhedronTest.cpp65 maybeSample = poly.findIntegerSample(); in checkSample()