Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/run-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
container:
image: silkeh/clang:19
options: --user root
timeout-minutes: 20
timeout-minutes: 30
steps:
- name: Install deps
run: |
Expand Down
1 change: 0 additions & 1 deletion runtime/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ set (SOURCE_FILES
lib.cpp
lin_check.cpp
logger.cpp
pretty_printer.cpp
verifying.cpp
generators.cpp
minimization.cpp
Expand Down
12 changes: 12 additions & 0 deletions runtime/include/custom_round.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#pragma once

#include <vector>

#include "lib.h"

struct CustomRound {
CustomRound(std::vector<std::vector<TaskBuilder>> threads_)
: threads(threads_) {}

std::vector<std::vector<TaskBuilder>> threads;
};
Loading