view time.cc @ 23:c3fb5f666e2d

graphs: Two graph algorithms
author Lewin Bormann <lbo@spheniscida.de>
date Sun, 09 Apr 2023 17:17:04 +0200
parents ec6009463e1c
children
line wrap: on
line source

#include <chrono>
#include <iostream>

#include "lib/exec.h"

using namespace std;

int main(void) {

    benchmarkit([]() { int a = 5 + 6; }, "simple add");

    return 0;
}