mirror of https://github.com/CGAL/cgal
remove debug
This commit is contained in:
parent
b9a28e999a
commit
d565efa3cd
|
|
@ -71,9 +71,6 @@ static TestCurves readCurves(std::string const& curve_directory)
|
|||
|
||||
// read filenames of curve files
|
||||
std::ifstream file(curve_directory + "dataset.txt");
|
||||
|
||||
std::cout << "Trying to read " << curve_directory << "dataset.txt\n";
|
||||
|
||||
assert(file);
|
||||
|
||||
std::string line;
|
||||
|
|
@ -85,7 +82,6 @@ static TestCurves readCurves(std::string const& curve_directory)
|
|||
curves.reserve(curve_filenames.size());
|
||||
for (auto const& curve_filename : curve_filenames) {
|
||||
std::ifstream curve_file(curve_directory + curve_filename);
|
||||
std::cout << " " << curve_directory + curve_filename << "\n";
|
||||
assert(curve_file);
|
||||
|
||||
curves.emplace_back();
|
||||
|
|
|
|||
Loading…
Reference in New Issue