diff --git a/README.md b/README.md index 4fad427..f4abd23 100644 --- a/README.md +++ b/README.md @@ -285,7 +285,8 @@ tests ``` ## Dependencies - +- [Eigen 3](https://eigen.tuxfamily.org/index.php?title=Main_Page): C++ template library for linear algebra. +- [Boost Random](https://www.boost.org/doc/libs/1_76_0/doc/html/boost_random.html): Part of the C++ Boost libraries for random number generation and probability distributions. - [Google Test (GTest)](https://github.com/google/googletest): A popular C++ testing framework. - [Google Mock](https://github.com/google/googletest/tree/main/googlemock): A library for writing and using C++ mock classes. diff --git a/include/random/number_generator/base_generator.h b/include/random/number_generator/base_generator.h index a706f12..78bea22 100644 --- a/include/random/number_generator/base_generator.h +++ b/include/random/number_generator/base_generator.h @@ -5,6 +5,8 @@ namespace OptionPricer { + // MAYB PUTTING THE CREATION INSIDE A STOCKMODEL FACTORY THAT WOULD REQUIRE A THE DIM PARAMETER + // TO BE PASSED TO BOTH THE QUASI RANDOM NUMBER GENERATOR AS WELL AS THE STOCKPRICEMODEL CLASS class NumberGenerator { public: explicit NumberGenerator(std::shared_ptr dist); @@ -21,4 +23,4 @@ namespace OptionPricer { } -#endif //BASE_NUMBER_GENERATOR_H +#endif //BASE_NUMBER_GENERATOR_H \ No newline at end of file