Program Listing for File discretegaussiangenerator.h

Return to documentation for file (core/include/math/discretegaussiangenerator.h)

//==================================================================================
// BSD 2-Clause License
//
// Copyright (c) 2014-2023, NJIT, Duality Technologies Inc. and other contributors
//
// All rights reserved.
//
// Author TPOC: contact@openfhe.org
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
// 1. Redistributions of source code must retain the above copyright notice, this
//    list of conditions and the following disclaimer.
//
// 2. Redistributions in binary form must reproduce the above copyright notice,
//    this list of conditions and the following disclaimer in the documentation
//    and/or other materials provided with the distribution.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
// DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
// FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
// DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
// SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
// CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//==================================================================================

/*
  This code provides generation of gaussian distributions of discrete values. Discrete uniform generator
  relies on the built-in C++ generator for 32-bit unsigned integers defined in <random>
 */

#ifndef LBCRYPTO_INC_MATH_DISCRETEGAUSSIANGENERATOR_H_
#define LBCRYPTO_INC_MATH_DISCRETEGAUSSIANGENERATOR_H_

#define _USE_MATH_DEFINES  // added for Visual Studio support

#include "math/distributiongenerator.h"

#include <memory>
#include <random>
#include <vector>

namespace lbcrypto {

constexpr double KARNEY_THRESHOLD = 300.0;

template <typename VecType>
class DiscreteGaussianGeneratorImpl {
public:
    explicit DiscreteGaussianGeneratorImpl(double std = 1.0);

    ~DiscreteGaussianGeneratorImpl() = default;

    bool IsInitialized() const;

    void Initialize();

    double GetStd() const;

    void SetStd(double std);

    int32_t GenerateInt() const;

    std::shared_ptr<int64_t> GenerateIntVector(uint32_t size) const;

    typename VecType::Integer GenerateInteger(const typename VecType::Integer& modulus) const;

    VecType GenerateVector(uint32_t size, const typename VecType::Integer& modulus) const;

    typename VecType::Integer GenerateInteger(double mean, double stddev, size_t n,
                                              const typename VecType::Integer& modulus) const;

    int32_t GenerateInteger(double mean, double stddev, size_t n) const;

    // int32_t GenerateInt32 (double mean, double stddev);
    // will be defined later

    static int64_t GenerateIntegerKarney(double mean, double stddev);

private:
    // Gyana to add precomputation methods and data members
    // all parameters are set as int because it is assumed that they are used for
    // generating "small" polynomials only
    double m_std{1.0};
    double m_a{0.0};
    std::vector<double> m_vals;
    bool peikert{false};

    uint32_t FindInVector(const std::vector<double>& S, double search) const;

    static double UnnormalizedGaussianPDF(const double& mean, const double& sigma, int32_t x) {
        return pow(M_E, -pow(x - mean, 2) / (2. * sigma * sigma));
    }

    static double UnnormalizedGaussianPDFOptimized(const double& mean, const double& sigmaFactor, int32_t x) {
        return pow(M_E, sigmaFactor * (x - mean) * (x - mean));
    }

    static bool AlgorithmP(PRNG& g, int32_t n);
    static int32_t AlgorithmG(PRNG& g);
    static bool AlgorithmH(PRNG& g);
    static bool AlgorithmHDouble(PRNG& g);
    static bool AlgorithmB(PRNG& g, int32_t k, double x);
    static bool AlgorithmBDouble(PRNG& g, int32_t k, double x);
};

}  // namespace lbcrypto

#endif  // LBCRYPTO_MATH_DISCRETEGAUSSIANGENERATOR_H_