You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@datasketches.apache.org by al...@apache.org on 2019/07/31 18:34:36 UTC

[incubator-datasketches-cpp] branch master updated (7a9e04b -> 3eb1acb)

This is an automated email from the ASF dual-hosted git repository.

alsay pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-datasketches-cpp.git.


    from 7a9e04b  Merge pull request #49 from apache/kll_no_default_construction
     add f89fd1c  some cleanup: aliases, move, no copy methods, simpler union
     add 9deb839  converted copyAs to copy constructor
     add 280d297  mistake fixed
     add f31be15  removed unused stuff
     add 6e3c956  type mismatch and const
     add 907b5b4  deallocate instead of delete, more const and cleanup
     add 3c347e3  more const and cleanup
     add 5e3e06c  virtual destructors
     add 8cea6ca  finish updating cmake files, fix kll python wrapper
     new 3eb1acb  Merge pull request #50 from apache/hll_cleanup

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 common/test/CMakeLists.txt                    |   1 +
 hll/CMakeLists.txt                            |   6 +-
 hll/include/Conversions-internal.hpp          | 127 ---------------------
 hll/include/Conversions.hpp                   |  44 --------
 hll/include/CouponHashSet-internal.hpp        |  37 +++---
 hll/include/CouponHashSet.hpp                 |   4 +-
 hll/include/CouponList-internal.hpp           |  34 +++---
 hll/include/CouponList.hpp                    |   5 -
 hll/include/Hll4Array.hpp                     |   4 -
 hll/include/Hll6Array.hpp                     |   2 -
 hll/include/Hll8Array.hpp                     |   4 +-
 hll/include/HllArray-internal.hpp             |  32 +++---
 hll/include/HllArray.hpp                      |   6 -
 hll/include/HllPairIterator.hpp               |   3 +-
 hll/include/HllSketch-internal.hpp            |  39 +++----
 hll/include/HllSketch.hpp                     | 122 --------------------
 hll/include/HllSketchImpl.hpp                 |   5 -
 hll/include/HllSketchImplFactory.hpp          |   8 --
 hll/include/HllUnion-internal.hpp             | 155 +++++++++-----------------
 hll/include/HllUnion.hpp                      | 154 -------------------------
 hll/include/IntArrayPairIterator-internal.hpp |   5 -
 hll/include/IntArrayPairIterator.hpp          |   4 +-
 hll/include/PairIterator.hpp                  |   2 +-
 hll/include/hll.hpp                           |  25 ++---
 hll/include/hll.private.hpp                   |   2 -
 hll/test/CouponHashSetTest.cpp                |  32 +++---
 hll/test/CouponListTest.cpp                   |  32 +++---
 hll/test/CrossCountingTest.cpp                |  16 ++-
 hll/test/HllArrayTest.cpp                     |  31 +++---
 hll/test/HllSketchTest.cpp                    |  36 +++---
 hll/test/HllUnionTest.cpp                     |   7 +-
 hll/test/ToFromByteArrayTest.cpp              |  26 ++---
 python/src/kll_wrapper.cpp                    |   8 +-
 33 files changed, 219 insertions(+), 799 deletions(-)
 delete mode 100644 hll/include/Conversions-internal.hpp
 delete mode 100644 hll/include/Conversions.hpp
 delete mode 100644 hll/include/HllSketch.hpp
 delete mode 100644 hll/include/HllUnion.hpp


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


[incubator-datasketches-cpp] 01/01: Merge pull request #50 from apache/hll_cleanup

Posted by al...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

alsay pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-datasketches-cpp.git

commit 3eb1acbd44637df9c520bdf6e72560334404edaf
Merge: 7a9e04b 8cea6ca
Author: Alexander Saydakov <13...@users.noreply.github.com>
AuthorDate: Wed Jul 31 11:34:31 2019 -0700

    Merge pull request #50 from apache/hll_cleanup
    
    Hll cleanup

 common/test/CMakeLists.txt                    |   1 +
 hll/CMakeLists.txt                            |   6 +-
 hll/include/Conversions-internal.hpp          | 127 ---------------------
 hll/include/Conversions.hpp                   |  44 --------
 hll/include/CouponHashSet-internal.hpp        |  37 +++---
 hll/include/CouponHashSet.hpp                 |   4 +-
 hll/include/CouponList-internal.hpp           |  34 +++---
 hll/include/CouponList.hpp                    |   5 -
 hll/include/Hll4Array.hpp                     |   4 -
 hll/include/Hll6Array.hpp                     |   2 -
 hll/include/Hll8Array.hpp                     |   4 +-
 hll/include/HllArray-internal.hpp             |  32 +++---
 hll/include/HllArray.hpp                      |   6 -
 hll/include/HllPairIterator.hpp               |   3 +-
 hll/include/HllSketch-internal.hpp            |  39 +++----
 hll/include/HllSketch.hpp                     | 122 --------------------
 hll/include/HllSketchImpl.hpp                 |   5 -
 hll/include/HllSketchImplFactory.hpp          |   8 --
 hll/include/HllUnion-internal.hpp             | 155 +++++++++-----------------
 hll/include/HllUnion.hpp                      | 154 -------------------------
 hll/include/IntArrayPairIterator-internal.hpp |   5 -
 hll/include/IntArrayPairIterator.hpp          |   4 +-
 hll/include/PairIterator.hpp                  |   2 +-
 hll/include/hll.hpp                           |  25 ++---
 hll/include/hll.private.hpp                   |   2 -
 hll/test/CouponHashSetTest.cpp                |  32 +++---
 hll/test/CouponListTest.cpp                   |  32 +++---
 hll/test/CrossCountingTest.cpp                |  16 ++-
 hll/test/HllArrayTest.cpp                     |  31 +++---
 hll/test/HllSketchTest.cpp                    |  36 +++---
 hll/test/HllUnionTest.cpp                     |   7 +-
 hll/test/ToFromByteArrayTest.cpp              |  26 ++---
 python/src/kll_wrapper.cpp                    |   8 +-
 33 files changed, 219 insertions(+), 799 deletions(-)


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