Skip to content

Commit b5b015e

Browse files
committed
Organized Example file directories
1 parent f68acae commit b5b015e

File tree

2 files changed

+2
-9
lines changed

2 files changed

+2
-9
lines changed

examples/crhmc_cooling_gaussians/volume_example.cpp

+1-8
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,6 @@
1-
#include "Eigen/Eigen"
2-
#include <vector>
3-
#include "cartesian_geom/cartesian_kernel.h"
4-
#include "convex_bodies/hpolytope.h"
51
#include "generators/known_polytope_generators.h"
6-
72
#include "random_walks/random_walks.hpp"
8-
#include "volume/volume_sequence_of_balls.hpp"
93
#include "volume/volume_cooling_gaussians_crhmc.hpp"
10-
#include "volume/volume_cooling_balls.hpp"
114

125
#include <iostream>
136
#include <fstream>
@@ -25,7 +18,7 @@ void calculateAndVerifyVolume(HPOLYTOPE& polytope) {
2518

2619
RandomNumberGenerator rng(polytope.dimension());
2720

28-
NT volume = volume_cooling_gaussians<HPOLYTOPE, RandomNumberGenerator>(polytope, rng, e, walk_len);
21+
NT volume = volume_cooling_gaussians_crhmc<HPOLYTOPE, RandomNumberGenerator>(polytope, rng, e, walk_len);
2922

3023
std::cout << "Volume " << volume << std::endl;
3124
}

include/volume/volume_cooling_gaussians_crhmc.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ template
230230
typename WalkTypePolicy = CRHMCWalk,
231231
int simdLen = 8
232232
>
233-
double volume_cooling_gaussians(Polytope& Pin,
233+
double volume_cooling_gaussians_crhmc(Polytope& Pin,
234234
RandomNumberGenerator& rng,
235235
double const& error = 0.1,
236236
unsigned int const& walk_length = 1)

0 commit comments

Comments
 (0)