Skip to content

Commit

Permalink
change epsilon notation
Browse files Browse the repository at this point in the history
  • Loading branch information
lucaperju committed Aug 19, 2024
1 parent b281839 commit e141605
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/random_walks/uniform_accelerated_billiard_walk.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
#include <set>
#include <vector>

const double eps = 0.0000000001;
const double eps = 1e-10;

// data structure which maintains the values of (b - Ar)/Av, and can extract the minimum positive value and the facet associated with it
// vec[i].first contains the value of (b(i) - Ar(i))/Av(i) + moved_dist, where moved_dist is the total distance that the point has travelled so far
Expand Down

0 comments on commit e141605

Please sign in to comment.