aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/histogram/adaptive/adaptive_histogram.h
diff options
context:
space:
mode:
authoreeight <eeight@yandex-team.ru>2022-02-10 16:46:19 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:46:19 +0300
commitbd085aee9b4f7a0bee302ce687964ffb7098f986 (patch)
tree1a2c5ffcf89eb53ecd79dbc9bc0a195c27404d0c /library/cpp/histogram/adaptive/adaptive_histogram.h
parent475c0a46f28166e83fd263badc7546377cddcabe (diff)
downloadydb-bd085aee9b4f7a0bee302ce687964ffb7098f986.tar.gz
Restoring authorship annotation for <eeight@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/histogram/adaptive/adaptive_histogram.h')
-rw-r--r--library/cpp/histogram/adaptive/adaptive_histogram.h48
1 files changed, 24 insertions, 24 deletions
diff --git a/library/cpp/histogram/adaptive/adaptive_histogram.h b/library/cpp/histogram/adaptive/adaptive_histogram.h
index 6e1f00ff4c..fa8f48433f 100644
--- a/library/cpp/histogram/adaptive/adaptive_histogram.h
+++ b/library/cpp/histogram/adaptive/adaptive_histogram.h
@@ -54,40 +54,40 @@ namespace NKiwiAggr {
TAdaptiveHistogram(const THistogram& histo, size_t defaultIntervals = DEFAULT_INTERVALS, ui64 defaultId = 0, TQualityFunction qualityFunc = nullptr);
TAdaptiveHistogram(IHistogram* histo, size_t defaultIntervals = DEFAULT_INTERVALS, ui64 defaultId = 0, TQualityFunction qualityFunc = CalcWeightQuality);
- ~TAdaptiveHistogram() override {
+ ~TAdaptiveHistogram() override {
}
TQualityFunction GetQualityFunc();
void Clear() override;
- void Add(double value, double weight) override;
- void Add(const THistoRec& histoRec) override;
+ void Add(double value, double weight) override;
+ void Add(const THistoRec& histoRec) override;
- void Merge(const THistogram& histo, double multiplier) final;
- void Merge(const TVector<THistogram>& histogramsToMerge) final;
- void Merge(TVector<IHistogramPtr> histogramsToMerge) final;
+ void Merge(const THistogram& histo, double multiplier) final;
+ void Merge(const TVector<THistogram>& histogramsToMerge) final;
+ void Merge(TVector<IHistogramPtr> histogramsToMerge) final;
- void Multiply(double factor) final;
+ void Multiply(double factor) final;
- void FromProto(const THistogram& histo) final;
- void ToProto(THistogram& histo) final;
+ void FromProto(const THistogram& histo) final;
+ void ToProto(THistogram& histo) final;
- void SetId(ui64 id) final;
- ui64 GetId() final;
- bool Empty() final;
- double GetMinValue() final;
- double GetMaxValue() final;
- double GetSum() final;
- double GetSumInRange(double leftBound, double rightBound) final;
- double GetSumAboveBound(double bound) final;
- double GetSumBelowBound(double bound) final;
- double CalcUpperBound(double sum) final;
- double CalcLowerBound(double sum) final;
- double CalcUpperBoundSafe(double sum) final;
- double CalcLowerBoundSafe(double sum) final;
+ void SetId(ui64 id) final;
+ ui64 GetId() final;
+ bool Empty() final;
+ double GetMinValue() final;
+ double GetMaxValue() final;
+ double GetSum() final;
+ double GetSumInRange(double leftBound, double rightBound) final;
+ double GetSumAboveBound(double bound) final;
+ double GetSumBelowBound(double bound) final;
+ double CalcUpperBound(double sum) final;
+ double CalcLowerBound(double sum) final;
+ double CalcUpperBoundSafe(double sum) final;
+ double CalcLowerBoundSafe(double sum) final;
- void PrecomputePartialSums() final;
+ void PrecomputePartialSums() final;
private:
void FromIHistogram(IHistogram* histo);
@@ -120,7 +120,7 @@ namespace NKiwiAggr {
{
}
- ~TDefinedAdaptiveHistogram() override {
+ ~TDefinedAdaptiveHistogram() override {
}
};