Returns a random double in [0, 1)
| 51 | |
| 52 | // Returns a random double in [0, 1) |
| 53 | double drand() { |
| 54 | return std::uniform_real_distribution<double>(0.0, 1.0)(rng()); |
| 55 | } |
| 56 | |
| 57 | // This is a function that reads in the Hutchinson operator and |
| 58 | // corresponding |