Skip to content

Commit

Permalink
remove debug
Browse files Browse the repository at this point in the history
  • Loading branch information
sloriot committed Jan 3, 2025
1 parent 99c9193 commit 63214f4
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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();
Expand Down

0 comments on commit 63214f4

Please sign in to comment.