/beegfs/hackathon/users/eoseret/qaas_runs_test/178-668-9699/intel/AMG/build/AMG/AMG/utilities/binsearch.c: 35 - 44
--------------------------------------------------------------------------------

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;
