/beegfs/hackathon/users/eoseret/qaas_runs_test/178-668-9639/intel/AMG/build/AMG/AMG/utilities/binsearch.c: 29 - 53
--------------------------------------------------------------------------------

29: {
30:    HYPRE_Int low, high, m;
31:    HYPRE_Int not_found = 1;
32: 
33:    low = 0;
34:    high = list_length-1; 
35:    while (not_found && low <= high)
36:    {
37:       m = (low + high) / 2;
38:       if (value < list[m])
39:       {
40:          high = m - 1;
41:       }
42:       else if (value > list[m])
43:       {
44:         low = m + 1;
[...]
53: }
