sort chunks

This commit is contained in:
bronku 2025-11-13 19:35:12 +01:00
parent 746fc01323
commit eddfd42284
6 changed files with 75 additions and 14 deletions

View file

@ -1,5 +1,6 @@
#include "config.hpp"
#include "record.hpp"
#include "sort.cpp"
#include "writer.hpp"
#include <fstream>
#include <iostream>
@ -17,13 +18,6 @@ void generate_file(int N, const std::string& filename)
}
}
int sort_file(const Configuration& opts)
{
// TODO: Implement sorting with new buffer classes
std::cout << "Sorting not yet implemented\n";
return 0;
}
int main(int argc, char** argv)
{
try {