Skip to content

Commit

Permalink
modfiied readme
Browse files Browse the repository at this point in the history
  • Loading branch information
anthonymakarewicz committed Aug 17, 2024
1 parent 1f53041 commit 0055281
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
4 changes: 3 additions & 1 deletion include/random/number_generator/base_generator.h
Original file line number Diff line number Diff line change
Expand Up @@ -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<Distribution> dist);
Expand All @@ -21,4 +23,4 @@ namespace OptionPricer {

}

#endif //BASE_NUMBER_GENERATOR_H
#endif //BASE_NUMBER_GENERATOR_H

0 comments on commit 0055281

Please sign in to comment.