Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Exposed two HMC walks with exponential and Gaussian sampling from Volesti #68

Merged
merged 12 commits into from
Aug 9, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 18 additions & 3 deletions dingo/bindings/bindings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,11 @@ double HPolytopeCPP::apply_sampling(int walk_len,
HP.set_InnerBall(CheBall);
starting_point = inner_point2;
std::list<Point> rand_points;
NT variance = 1.0;
NT a = NT(1)/(NT(2)*variance);
int dim = 50;
Point c(dim);
c = GetDirection<Point>::apply(dim, rng, false);
TolisChal marked this conversation as resolved.
Show resolved Hide resolved

if (method == 1) { // cdhr
uniform_sampling<CDHRWalk>(rand_points, HP, rng, walk_len, number_of_points,
Expand All @@ -120,13 +125,23 @@ double HPolytopeCPP::apply_sampling(int walk_len,
} else if (method == 5) { // dikin walk {
uniform_sampling<DikinWalk>(rand_points, HP, rng, walk_len, number_of_points,
starting_point, number_of_points_to_burn);
} else if (method == 6) { // dikin walk {
} else if (method == 6) { // john walk {
TolisChal marked this conversation as resolved.
Show resolved Hide resolved
uniform_sampling<JohnWalk>(rand_points, HP, rng, walk_len, number_of_points,
starting_point, number_of_points_to_burn);
} else if (method == 7) { // dikin walk {
} else if (method == 7) { // vaidya walk {
uniform_sampling<VaidyaWalk>(rand_points, HP, rng, walk_len, number_of_points,
starting_point, number_of_points_to_burn);
} else {
}
else if (method == 8) { // gaussian sampling with gaussian HMC exact walk {
gaussian_sampling<GaussianHamiltonianMonteCarloExactWalk>(rand_points, HP, rng, walk_len, number_of_points, a,
starting_point, number_of_points_to_burn);
}
else if (method == 9) { // exponential sampling with exponential HMC exact walk {
exponential_sampling<ExponentialHamiltonianMonteCarloExactWalk>(rand_points, HP, rng, walk_len, number_of_points, c, variance,
starting_point, number_of_points_to_burn);
}

else {
throw std::runtime_error("This function must not be called.");
}

Expand Down
4 changes: 4 additions & 0 deletions dingo/volestipy.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,10 @@ cdef class HPolytope:
int_method = 6
elif method == 'vaidya_walk':
int_method = 7
elif method == 'gaussian_hmc_walk':
int_method = 8
elif method == 'exponential_hmc_walk':
int_method = 9
else:
raise RuntimeError("Uknown MCMC sampling method")

Expand Down