Define IntegerRangeList validator.
More...
#include <Zoltan2_config.h>
#include <Teuchos_ParameterEntryValidator.hpp>
#include <Teuchos_ValidatorXMLConverter.hpp>
#include <Teuchos_XMLObject.hpp>
#include <Teuchos_ValidatorMaps.hpp>
#include <Teuchos_DummyObjectGetter.hpp>
#include <Teuchos_StrUtils.hpp>
Go to the source code of this file.
|
| namespace | Zoltan2 |
| | Created by mbenlioglu on Aug 31, 2020.
|
| |
|
| template<typename Integral > |
| bool | Zoltan2::validIntegralRangeList (const Teuchos::Array< Integral > &vals) |
| | A helper function that indicates whether an array is a valid integer range list.
|
| |
| template<typename Integral > |
| bool | Zoltan2::allValuesAreInRangeList (const Teuchos::Array< Integral > &vals) |
| | A helper function that determines if all values are in the list.
|
| |
| template<typename Integral > |
| bool | Zoltan2::allValuesAreInRangeList (const Teuchos::ParameterEntry &e) |
| | A helper function that determines if all values are in the list.
|
| |
| template<typename Integral > |
| bool | Zoltan2::noValuesAreInRangeList (const Teuchos::Array< Integral > &vals) |
| | A helper function that determines if no values are in the list.
|
| |
| template<typename Integral > |
| bool | Zoltan2::noValuesAreInRangeList (const Teuchos::ParameterEntry &e) |
| | A helper function that determines if no values are in the list.
|
| |
| template<typename Integral > |
| bool | Zoltan2::IsInRangeList (const Integral val, const Teuchos::Array< Integral > &valList, bool sorted=true) |
| | A helper function that determines if a value is in the list.
|
| |
| template<typename Integral > |
| bool | Zoltan2::IsInRangeList (const Integral val, const Teuchos::ParameterEntry &e) |
| | A helper function that determines if a value is in the list.
|
| |
| template<typename Integral > |
| Teuchos::ArrayView< Integral > | Zoltan2::getList (Teuchos::Array< Integral > &irl) |
| | A helper function that returns a view of the list.
|
| |
| template<typename Integral > |
| void | Zoltan2::printIntegralRangeList (std::ostream &os, Teuchos::Array< Integral > &irl) |
| | A helper function that prints the meaning of an encoded integer range list.
|
| |
Define IntegerRangeList validator.
Definition in file Zoltan2_IntegerRangeList.hpp.
◆ ValidStringsList