소스 검색

Correct a comment

Ian Goldberg 1 년 전
부모
커밋
6b222f9efc
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      heap.cpp

+ 1 - 1
heap.cpp

@@ -727,7 +727,7 @@ void Heap(MPCIO & mpcio,  const PRACOptions & opts, char ** args) {
         MinHeap tree(tio.player(), size);
         tree.init(tio, yield);
         // This form of init with a third parameter of n sets the heap
-        // to contain 1, 2, 3, ..., n.
+        // to contain 100, 200, 300, ..., 100*n.
         tree.init(tio, yield, (size_t(1) << heapdepth) - 1);
         std::cout << "\n===== Init Stats =====\n";
         tio.sync_lamport();