AlexanderSaydakov commented on code in PR #428:
URL: https://github.com/apache/datasketches-cpp/pull/428#discussion_r1536547275


##########
tdigest/test/tdigest_test.cpp:
##########
@@ -54,8 +54,9 @@ TEST_CASE("one value", "[tdigest]") {
 
 TEST_CASE("many values", "[tdigest]") {
   const size_t n = 10000;
-  tdigest_double td(100);
+  tdigest_double td;
   for (size_t i = 0; i < n; ++i) td.update(i);
+//  std::cout << td.to_string(true);

Review Comment:
   these are tests, and I uncomment this sometimes to check. not a big deal. we 
can kill this later



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to