Smart parellalization

This commit is contained in:
2026-06-28 09:37:09 -04:00
parent 1813b3f5cf
commit ac98871cfc
9 changed files with 275 additions and 73 deletions

View File

@@ -9,6 +9,12 @@
int main(const int argc, char** argv) {
Options options = parse(argc, argv);
Application app(options);
app.assemble();
if (options.graphFilename.has_value()) {
app.save_graph(options.graphFilename.value());
spdlog::get("app")->info("Exiting..");
return 0;
}
app.run();
return 0;