summaryrefslogtreecommitdiff
path: root/include/internal/utilities.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/internal/utilities.h')
-rw-r--r--include/internal/utilities.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/internal/utilities.h b/include/internal/utilities.h
index af04dfdb..600605c7 100644
--- a/include/internal/utilities.h
+++ b/include/internal/utilities.h
@@ -143,6 +143,10 @@ bool CheckArgument(const int argc, char *argv[], std::string &help, const std::s
// Returns a random number to be used as a seed
unsigned int GetRandomSeed();
+// Test/example data lower and upper limit
+constexpr auto kTestDataLowerLimit = -2.0;
+constexpr auto kTestDataUpperLimit = 2.0;
+
// Populates a vector with random data
template <typename T>
void PopulateVector(std::vector<T> &vector);