Skip to content
This repository was archived by the owner on Oct 3, 2021. It is now read-only.

Combined tasks #1104

Draft
wants to merge 7 commits into
base: master
Choose a base branch
from
Draft
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
3 changes: 3 additions & 0 deletions c/ReachSafety-Combinations.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Description: Contains programs that are combinations of other programs. These programs contain program parts independent of each other and may require different techniques to be successfully verified.
Architecture: 32 bit

1 change: 1 addition & 0 deletions c/ReachSafety-Combinations.set
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
combinations/*.yml
1 change: 1 addition & 0 deletions c/check.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@
("eca-rers2018", "unexpected file RERS_18_solutions_dot_petri.csv"),
("eca-rers2018", "unexpected file createYml.py"),
("nla-digbench-scaling", "unexpected file generate.py"),
("combinations", "unexpected file generate-tasks.py"),

# historical
("ntdrivers", "missing readme"),
Expand Down
10 changes: 10 additions & 0 deletions c/combinations/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
LEVEL := ../

CLANG_WARNINGS := \
-Wno-sometimes-uninitialized \
-Wno-uninitialized \

include $(LEVEL)/Makefile.config

tasks:
./generate-tasks.py --benchmark-dir ../../ --output-dir ./
Loading