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 2020/06/19 20:59:46 UTC

[incubator-datasketches-cpp] branch tuple_sketch updated: moved binomial bounds

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

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


The following commit(s) were added to refs/heads/tuple_sketch by this push:
     new bc7c340  moved binomial bounds
bc7c340 is described below

commit bc7c340829af1ccff01e99d741f0ae6560488db5
Author: AlexanderSaydakov <Al...@users.noreply.github.com>
AuthorDate: Fri Jun 19 13:59:35 2020 -0700

    moved binomial bounds
---
 common/CMakeLists.txt | 1 +
 theta/CMakeLists.txt  | 3 +--
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/common/CMakeLists.txt b/common/CMakeLists.txt
index 738e4b3..4ba9e1d 100644
--- a/common/CMakeLists.txt
+++ b/common/CMakeLists.txt
@@ -37,5 +37,6 @@ target_sources(common
     ${CMAKE_CURRENT_SOURCE_DIR}/include/serde.hpp
     ${CMAKE_CURRENT_SOURCE_DIR}/include/count_zeros.hpp
     ${CMAKE_CURRENT_SOURCE_DIR}/include/inv_pow2_table.hpp
+    ${CMAKE_CURRENT_SOURCE_DIR}/include/binomial_bounds.hpp
 )
 
diff --git a/theta/CMakeLists.txt b/theta/CMakeLists.txt
index 69af9db..d1f523e 100644
--- a/theta/CMakeLists.txt
+++ b/theta/CMakeLists.txt
@@ -34,7 +34,7 @@ target_compile_features(theta INTERFACE cxx_std_11)
 
 set(theta_HEADERS "")
 list(APPEND theta_HEADERS "include/theta_sketch.hpp;include/theta_union.hpp;include/theta_intersection.hpp")
-list(APPEND theta_HEADERS "include/theta_a_not_b.hpp;include/binomial_bounds.hpp;include/theta_sketch_impl.hpp")
+list(APPEND theta_HEADERS "include/theta_a_not_b.hpp;include/theta_sketch_impl.hpp")
 list(APPEND theta_HEADERS "include/theta_union_impl.hpp;include/theta_intersection_impl.hpp;include/theta_a_not_b_impl.hpp")
 list(APPEND theta_HEADERS "include/conditional_back_inserter.hpp")
 
@@ -51,7 +51,6 @@ target_sources(theta
     ${CMAKE_CURRENT_SOURCE_DIR}/include/theta_union.hpp
     ${CMAKE_CURRENT_SOURCE_DIR}/include/theta_intersection.hpp
     ${CMAKE_CURRENT_SOURCE_DIR}/include/theta_a_not_b.hpp
-    ${CMAKE_CURRENT_SOURCE_DIR}/include/binomial_bounds.hpp
     ${CMAKE_CURRENT_SOURCE_DIR}/include/theta_sketch_impl.hpp
     ${CMAKE_CURRENT_SOURCE_DIR}/include/theta_union_impl.hpp
     ${CMAKE_CURRENT_SOURCE_DIR}/include/theta_intersection_impl.hpp


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