Lines Matching refs:cout

87             std::cout << "The display window is not large enough to show the maps"  in main()
91 std::cout << " Should be at least " << minxSize << " x " << minySize << "." in main()
118 std::cout in Usage()
122 std::cout << "Create polygon maps and overlay them." in Usage()
125 std::cout << "Parameters:" in Usage()
127 std::cout << " threads[:threads2] - number of threads to run" in Usage()
129 std::cout << " --polys npolys - number of polygons in each map" in Usage()
131 std::cout << " --size nnnxnnn - size of each map (X x Y)" in Usage()
133 std::cout << " --seed nnn - initial value of random number generator" in Usage()
135 std::cout << " --csv filename - write timing data to CSV-format file" in Usage()
137 std::cout << " --grainsize n - set grainsize to n" in Usage()
139 std::cout << " --use_malloc - allocate polygons with malloc instead of scalable allocator" in Usage()
141 std::cout << "\n"; in Usage()
142 std::cout << "npolys must be smaller than the size of the map" in Usage()
144 std::cout << "\n"; in Usage()
173 std::cout << "Unexpected character in thread specifier: " << *end << "\n"; in ParseCmdLine()
188 std::cout << " Error: map size multiply specified" in ParseCmdLine()
197 std::cout << " Error: --size must have a value" in ParseCmdLine()
202 std::cout << "Error: map size should be nnnxnnn (" << *argv << ")" in ParseCmdLine()
210 std::cout << "Error parsing map size (format should be nnnxnnn (" << *argv in ParseCmdLine()
216 std::cout << "Error: size of map should be greater than 0 (" << *argv << ")" in ParseCmdLine()
230 std::cout << "Error: new seed multiply specified" in ParseCmdLine()
238 std::cout << "Error: --seed should be an unsigned number (instead of " << *argv in ParseCmdLine()
253 std::cout << "Error: number of polygons multiply-specified" in ParseCmdLine()
260 std::cout << "Error: number of polygons must be greater than 0 (" << *argv in ParseCmdLine()
273 std::cout << "Error: Multiple specification of CSV file" in ParseCmdLine()
288 std::cout << "Error: Multiple specification of grainsize" in ParseCmdLine()
296 std::cout << "Error: grainsize must be greater than 0" in ParseCmdLine()
308 std::cout << "Error: --use_malloc multiply-specified" in ParseCmdLine()
318 std::cout << "Error: unrecognized argument: " << *argv << "\n"; in ParseCmdLine()
327 std::cout in ParseCmdLine()
363 std::cout << "xSize (" << xSize << ") should be > 0." in GenerateMap()
368 std::cout << "ySize (" << ySize << ") should be > 0." in GenerateMap()
373 std::cout << "gNPolygons (" << gNPolygons << ") should be less than " << (xSize * ySize) in GenerateMap()
519 std::cout << "\n" in GenerateMap()
523 std::cout << "Row " << std::setw(2) << j << ":"; in GenerateMap()
527 std::cout << std::setw(2) << it; in GenerateMap()
531 std::cout << " " << ct; in GenerateMap()
534 std::cout << "\n"; in GenerateMap()
548 std::cout << "checkMap error: " << str << " out of range (" << n << ")" \ in CheckPolygonMap()
558 std::cout << "checkMap error: no polygons in map" in CheckPolygonMap()
567 std::cout << "checkMap error: map origin not (0,0) (X=" << mapLowX << ", Y=" << mapLowY in CheckPolygonMap()
573 std::cout << "checkMap error: no area in map (X=" << mapXhigh << ", Y=" << mapYhigh << ")" in CheckPolygonMap()
598 std::cout << "checkMap error: xlow > xhigh (" << xlow << "," << xhigh << ")" in CheckPolygonMap()
603 std::cout << "checkMap error: ylow > yhigh (" << ylow << "," << yhigh << ")" in CheckPolygonMap()
610 std::cout << "checkMap error: polygons " << cArray[indx(i, j)] << " and " << k in CheckPolygonMap()
622 std::cout << "checkMap error: block(" << i << ", " << j << ") not in any polygon" in CheckPolygonMap()
671 std::cout << "Error: maps not the same size ( " << int(t1->size()) << " vs " in ComparePolygonMaps()
678 std::cout << "Error: polygons unequal (" << (*t1)[i] << " vs " << (*t2)[i] << "\n"; in ComparePolygonMaps()