view time.cc @ 24:b89680a8af68 default tip

graph: detect negative cycles
author Lewin Bormann <lbo@spheniscida.de>
date Sun, 09 Apr 2023 17:27:20 +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;
}