You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@datasketches.apache.org by GitBox <gi...@apache.org> on 2019/11/08 07:17:35 UTC

[GitHub] [incubator-datasketches-cpp] ravindra-wagh opened a new issue #67: Issue in update_theta_sketch_alloc::internal_deserialize() method

ravindra-wagh opened a new issue #67: Issue in update_theta_sketch_alloc<A>::internal_deserialize() method
URL: https://github.com/apache/incubator-datasketches-cpp/issues/67
 
 
   'update_theta_sketch_alloc<A>::internal_deserialize()' method returns 'update_theta_sketch_alloc' object but while constructing this object, parameters 'lg_nom_size' and 'lg_cur_size' are not in correct order. 
   Currently the object is constructed as below:
        update_theta_sketch_alloc<A>(..., lg_nom_size, lg_cur_size, ...)
   It should be as below so that it de-serializes the sketch properly:
        update_theta_sketch_alloc<A>(..., lg_cur_size, lg_nom_size, ...)

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@datasketches.apache.org
For additional commands, e-mail: commits-help@datasketches.apache.org