#ifndef ATOOLS__Math__Sobol_H #define ATOOLS__Math__Sobol_H #include #include namespace ATOOLS { class Sobol { private: unsigned n, D, L; std::vector d, s, a, X; std::vector > m, V; unsigned C(const unsigned i); public: Sobol(unsigned _D,std::string file="21201"); std::vector Point(); };// end of class Sobol }// end of namespace ATOOLS #endif