Skip to content

Commit 2ad4bfa

Browse files
committed
remove debug print and change variable names
1 parent 2dea296 commit 2ad4bfa

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

include/random_walks/compute_diameter.hpp

-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ struct compute_diameter<HPolytope<Point, MT>>
3636
template <typename NT>
3737
static NT compute(HPolytope<Point, MT> &P)
3838
{
39-
std::cout << P.InnerBall().second << "<----" << std::endl;
4039
return NT(2) * std::sqrt(NT(P.dimension())) * P.InnerBall().second;
4140
}
4241
};

test/sampling_test.cpp

+4-5
Original file line numberDiff line numberDiff line change
@@ -380,14 +380,13 @@ void call_test_gabw(){
380380
push_back_policy, rng);
381381

382382
jj = 0;
383-
MT samples2(d, numpoints);
384383
for (typename std::list<Point>::iterator rpit = Points.begin(); rpit != Points.end(); rpit++, jj++)
385-
samples2.col(jj) = (*rpit).getCoefficients();
384+
samples.col(jj) = (*rpit).getCoefficients();
386385

387-
VT score2 = univariate_psrf<NT, VT>(samples2);
388-
std::cout << "psrf = " << score2.maxCoeff() << std::endl;
386+
score = univariate_psrf<NT, VT>(samples);
387+
std::cout << "psrf = " << score.maxCoeff() << std::endl;
389388

390-
CHECK(score2.maxCoeff() < 1.1);
389+
CHECK(score.maxCoeff() < 1.1);
391390

392391
}
393392

0 commit comments

Comments
 (0)