Skip to content
Snippets Groups Projects
Commit ecc621ba authored by Jacob Kegerreis's avatar Jacob Kegerreis
Browse files

Rename function to keep the non-generality clear

parent 6350e5f6
No related branches found
No related tags found
1 merge request!547Add generic utility function to find a value in an array
......@@ -30,7 +30,7 @@
*
* Return -1 and n for x below and above the array edge values respectively.
*/
INLINE static int find_value_in_monotonic_array(
INLINE static int find_value_in_monot_incr_array(
const float x, const float *array, const int n) {
int index_mid, index_low = 0, index_high = n;
......
......@@ -24,7 +24,7 @@
* @brief Test generic utility functions
*/
int main() {
/// Test find_value_in_monotonic_array()
/// Test find_value_in_monot_incr_array()
int n = 100;
float array[n];
int index;
......@@ -37,28 +37,28 @@ int main() {
// Typical value
x = 42.42f;
index = find_value_in_monotonic_array(x, array, n);
index = find_value_in_monot_incr_array(x, array, n);
if (index != 42) {
error("Failed with a typical value ");
}
// Value on array element
x = 33.f;
index = find_value_in_monotonic_array(x, array, n);
index = find_value_in_monot_incr_array(x, array, n);
if (index != 33) {
error("Failed with an array element ");
}
// Value below array
x = -123.f;
index = find_value_in_monotonic_array(x, array, n);
index = find_value_in_monot_incr_array(x, array, n);
if (index != -1) {
error("Failed with a value below the array ");
}
// Value above array
x = 123.f;
index = find_value_in_monotonic_array(x, array, n);
index = find_value_in_monot_incr_array(x, array, n);
if (index != n) {
error("Failed with a value above the array ");
}
......@@ -66,7 +66,7 @@ int main() {
// Array slice with typical value
x = 9.81f;
n = 10;
index = find_value_in_monotonic_array(x, array + 5, n);
index = find_value_in_monot_incr_array(x, array + 5, n);
if (index != 4) {
error("Failed with an array slice ");
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment