Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
51 changed files
with
61 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -22,6 +22,7 @@ | ||
|
||
#include <algorithm> | ||
#include <cmath> | ||
#include <stdexcept> | ||
|
||
/* | ||
* This class enables the estimation of error bounds given a sample set size, the sampling | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -21,6 +21,7 @@ | ||
#define QUANTILE_SKETCH_SORTED_VIEW_IMPL_HPP_ | ||
|
||
#include <algorithm> | ||
#include <stdexcept> | ||
|
||
namespace datasketches { | ||
|
||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -23,6 +23,7 @@ | ||
#define CPC_COMPRESSOR_IMPL_HPP_ | ||
|
||
#include <memory> | ||
#include <stdexcept> | ||
|
||
#include "compression_data.hpp" | ||
#include "cpc_util.hpp" | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -23,6 +23,7 @@ | ||
#define CPC_CONFIDENCE_HPP_ | ||
|
||
#include <cmath> | ||
#include <stdexcept> | ||
|
||
#include "cpc_sketch.hpp" | ||
|
||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -22,6 +22,8 @@ | ||
|
||
#include "count_zeros.hpp" | ||
|
||
#include <stdexcept> | ||
|
||
namespace datasketches { | ||
|
||
template<typename A> | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -21,6 +21,7 @@ | ||
#include <cstring> | ||
#include <sstream> | ||
#include <fstream> | ||
#include <stdexcept> | ||
|
||
#include <catch.hpp> | ||
|
||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -21,6 +21,8 @@ | ||
|
||
#include "cpc_union.hpp" | ||
|
||
#include <stdexcept> | ||
|
||
namespace datasketches { | ||
|
||
static const double RELATIVE_ERROR_FOR_LG_K_11 = 0.02; | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -23,6 +23,7 @@ | ||
#include <cstring> | ||
#include <limits> | ||
#include <sstream> | ||
#include <stdexcept> | ||
|
||
#include "memory_operations.hpp" | ||
|
||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -19,6 +19,7 @@ | ||
|
||
#include <catch.hpp> | ||
#include <sstream> | ||
#include <stdexcept> | ||
|
||
#include "frequent_items_sketch.hpp" | ||
#include "test_type.hpp" | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -20,6 +20,7 @@ | ||
#include <catch.hpp> | ||
#include <sstream> | ||
#include <fstream> | ||
#include <stdexcept> | ||
|
||
#include "frequent_items_sketch.hpp" | ||
|
||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -20,6 +20,8 @@ | ||
#ifndef _AUXHASHMAP_INTERNAL_HPP_ | ||
#define _AUXHASHMAP_INTERNAL_HPP_ | ||
|
||
#include <stdexcept> | ||
|
||
#include "HllUtil.hpp" | ||
#include "AuxHashMap.hpp" | ||
|
||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -24,6 +24,7 @@ | ||
#include "CompositeInterpolationXTable.hpp" | ||
|
||
#include <exception> | ||
#include <stdexcept> | ||
|
||
namespace datasketches { | ||
|
||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -24,6 +24,7 @@ | ||
|
||
#include <cstring> | ||
#include <exception> | ||
#include <stdexcept> | ||
|
||
namespace datasketches { | ||
|
||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -27,6 +27,7 @@ | ||
|
||
#include <algorithm> | ||
#include <cmath> | ||
#include <stdexcept> | ||
|
||
namespace datasketches { | ||
|
||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -23,6 +23,8 @@ | ||
#include "HllSketchImpl.hpp" | ||
#include "HllSketchImplFactory.hpp" | ||
|
||
#include <stdexcept> | ||
|
||
namespace datasketches { | ||
|
||
template<typename A> | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -20,6 +20,8 @@ | ||
#ifndef _HLLSKETCHIMPLFACTORY_HPP_ | ||
#define _HLLSKETCHIMPLFACTORY_HPP_ | ||
|
||
#include <stdexcept> | ||
|
||
#include "HllUtil.hpp" | ||
#include "HllSketchImpl.hpp" | ||
#include "CouponList.hpp" | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -19,6 +19,7 @@ | ||
|
||
#include <catch.hpp> | ||
#include <memory> | ||
#include <stdexcept> | ||
|
||
#include "AuxHashMap.hpp" | ||
|
||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -26,6 +26,7 @@ | ||
#include <cmath> | ||
#include <string> | ||
#include <exception> | ||
#include <stdexcept> | ||
|
||
namespace datasketches { | ||
|
||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -23,6 +23,7 @@ | ||
#include <cmath> | ||
#include <string> | ||
#include <exception> | ||
#include <stdexcept> | ||
|
||
#include "hll.hpp" | ||
#include "CouponList.hpp" | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -21,6 +21,7 @@ | ||
|
||
#include <exception> | ||
#include <sstream> | ||
#include <stdexcept> | ||
#include <catch.hpp> | ||
|
||
namespace datasketches { | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -17,6 +17,8 @@ | ||
* under the License. | ||
*/ | ||
|
||
#include <stdexcept> | ||
|
||
#include "hll.hpp" | ||
|
||
#include <catch.hpp> | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -19,6 +19,7 @@ | ||
|
||
#include <catch.hpp> | ||
#include <sstream> | ||
#include <stdexcept> | ||
|
||
#include "hll.hpp" | ||
|
||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -17,6 +17,7 @@ | ||
* under the License. | ||
*/ | ||
|
||
#include <stdexcept> | ||
|
||
#include <catch.hpp> | ||
|
||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -21,6 +21,7 @@ | ||
#define KLL_HELPER_IMPL_HPP_ | ||
|
||
#include <algorithm> | ||
#include <stdexcept> | ||
|
||
namespace datasketches { | ||
|
||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -23,6 +23,7 @@ | ||
#include <iostream> | ||
#include <iomanip> | ||
#include <sstream> | ||
#include <stdexcept> | ||
|
||
#include "memory_operations.hpp" | ||
#include "kll_helper.hpp" | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -22,6 +22,7 @@ | ||
#include <cstring> | ||
#include <sstream> | ||
#include <fstream> | ||
#include <stdexcept> | ||
|
||
#include <kll_sketch.hpp> | ||
#include <test_allocator.hpp> | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -24,6 +24,7 @@ | ||
#include <pybind11/numpy.h> | ||
#include <sstream> | ||
#include <vector> | ||
#include <stdexcept> | ||
|
||
namespace py = pybind11; | ||
|
||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -24,6 +24,7 @@ | ||
#include <pybind11/numpy.h> | ||
#include <sstream> | ||
#include <vector> | ||
#include <stdexcept> | ||
|
||
namespace py = pybind11; | ||
|
||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -24,6 +24,7 @@ | ||
#include <pybind11/numpy.h> | ||
#include <sstream> | ||
#include <vector> | ||
#include <stdexcept> | ||
|
||
namespace py = pybind11; | ||
|
||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -24,6 +24,8 @@ | ||
#include "req_compactor.hpp" | ||
#include "req_quantile_calculator.hpp" | ||
|
||
#include <stdexcept> | ||
|
||
namespace datasketches { | ||
|
||
template< | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -24,6 +24,7 @@ | ||
#include <fstream> | ||
#include <sstream> | ||
#include <limits> | ||
#include <stdexcept> | ||
|
||
namespace datasketches { | ||
|
||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -25,6 +25,7 @@ | ||
#include <cmath> | ||
#include <random> | ||
#include <algorithm> | ||
#include <stdexcept> | ||
|
||
#include "var_opt_sketch.hpp" | ||
#include "serde.hpp" | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -24,6 +24,7 @@ | ||
|
||
#include <cmath> | ||
#include <sstream> | ||
#include <stdexcept> | ||
|
||
namespace datasketches { | ||
|
||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -27,6 +27,7 @@ | ||
#include <fstream> | ||
#include <cmath> | ||
#include <random> | ||
#include <stdexcept> | ||
|
||
#ifdef TEST_BINARY_INPUT_PATH | ||
static std::string testBinaryInputPath = TEST_BINARY_INPUT_PATH; | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -27,6 +27,7 @@ | ||
#include <fstream> | ||
#include <cmath> | ||
#include <random> | ||
#include <stdexcept> | ||
|
||
#ifdef TEST_BINARY_INPUT_PATH | ||
static std::string testBinaryInputPath = TEST_BINARY_INPUT_PATH; | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -22,6 +22,7 @@ | ||
|
||
#include <cstdint> | ||
#include <string> | ||
#include <stdexcept> | ||
|
||
#include "bounds_binomial_proportions.hpp" | ||
|
||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -22,6 +22,7 @@ | ||
|
||
#include <iostream> | ||
#include <iomanip> | ||
#include <stdexcept> | ||
|
||
namespace datasketches { | ||
|
||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -20,6 +20,7 @@ | ||
#include <iostream> | ||
#include <sstream> | ||
#include <algorithm> | ||
#include <stdexcept> | ||
|
||
#include "conditional_forward.hpp" | ||
|
||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -21,6 +21,7 @@ | ||
#define THETA_A_SET_DIFFERENCE_BASE_IMPL_HPP_ | ||
|
||
#include <algorithm> | ||
#include <stdexcept> | ||
|
||
#include "conditional_back_inserter.hpp" | ||
#include "conditional_forward.hpp" | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -22,6 +22,7 @@ | ||
|
||
#include <sstream> | ||
#include <vector> | ||
#include <stdexcept> | ||
|
||
#include "serde.hpp" | ||
#include "binomial_bounds.hpp" | ||