Definition at line 78 of file matrix-sort.cpp.
79 {
81 int i = lo - 1;
82 int j = hi + 1;
83 for (;;)
84 {
85 do
86 {
87 j--;
88 }
90 do
91 {
92 i++;
93 }
95
96 if (i < j)
97 {
101 }
102 else
103 return j;
104 }
105 }
int sort_compare(int i, int j)
References sort_compare(), and sort_vals.
Referenced by sort_range().