Algoritmeanalyse-og-optimering / src / benchmark.cpp
benchmark.cpp
Raw
// file for benchmarking the performance of the different algorithms

namespace Benchmark {
    class Run {
    private: 

    public:
        Run();
        ~Run();
        void start();
    };
}