Home | History | Annotate | Download | only in sort.heap

Lines Matching defs:ia

25     int* ia = new int [N];
27 ia[i] = i;
28 std::shuffle(ia, ia+N, randomness);
29 std::make_heap(ia, ia+N);
30 std::sort_heap(ia, ia+N);
31 assert(std::is_sorted(ia, ia+N));
32 delete [] ia;