mirror of
https://github.com/Z3Prover/z3
synced 2026-08-09 23:42:21 +00:00
Extend Ostrich benchmark workflow to include cvc5 and Ostrich2 (#10429)
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
This commit is contained in:
parent
9695ceafbc
commit
991d4be5f1
1 changed files with 119 additions and 81 deletions
200
.github/workflows/ostrich-benchmark.md
vendored
200
.github/workflows/ostrich-benchmark.md
vendored
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
description: Run Z3 string solver benchmarks (seq vs nseq) and ZIPT on all Ostrich benchmarks from tests/ostrich.zip on the c3 branch and post results as a GitHub discussion
|
||||
description: Run Z3 string solver benchmarks (seq vs nseq) plus ZIPT, cvc5, and Ostrich2 on all Ostrich benchmarks from tests/ostrich.zip on the c3 branch and post results as a GitHub discussion
|
||||
|
||||
on:
|
||||
schedule:
|
||||
|
|
@ -42,9 +42,9 @@ steps:
|
|||
---
|
||||
|
||||
|
||||
# Ostrich Benchmark: Z3 c3 branch vs ZIPT
|
||||
# Ostrich Benchmark: Z3 c3 branch vs ZIPT, cvc5, and Ostrich2
|
||||
|
||||
You are an AI agent that benchmarks Z3 string solvers (`seq` and `nseq`) and the standalone ZIPT solver on all SMT-LIB2 benchmarks from the `tests/ostrich.zip` archive on the `c3` branch, and publishes a summary report as a GitHub discussion.
|
||||
You are an AI agent that benchmarks Z3 string solvers (`seq` and `nseq`) plus ZIPT, cvc5, and Ostrich2 on all SMT-LIB2 benchmarks from the `tests/ostrich.zip` archive on the `c3` branch, and publishes a summary report as a GitHub discussion.
|
||||
|
||||
## Context
|
||||
|
||||
|
|
@ -89,11 +89,11 @@ echo "Found Microsoft.Z3.dll at: $Z3_DOTNET_DLL"
|
|||
|
||||
If the build fails, report the error clearly and exit without proceeding.
|
||||
|
||||
Once the binary is confirmed working, call the `noop` safe-output tool with the message `"Z3 built successfully from the c3 branch. Starting ZIPT build and benchmark — results will be posted as a GitHub Discussion once complete."` This keepalive call refreshes the safe-output MCP session before the long build and benchmark phases begin, preventing a session timeout.
|
||||
Once the binary is confirmed working, call the `noop` safe-output tool with the message `"Z3 built successfully from the c3 branch. Starting ZIPT/cvc5/Ostrich2 build and benchmark — results will be posted as a GitHub Discussion once complete."` This keepalive call refreshes the safe-output MCP session before the long build and benchmark phases begin, preventing a session timeout.
|
||||
|
||||
## Phase 2a: Clone and Build ZIPT
|
||||
## Phase 2a: Clone and Build ZIPT, cvc5, and Ostrich2
|
||||
|
||||
Clone the ZIPT solver from the `parikh` branch and compile it against the Z3 .NET bindings built in Phase 1.
|
||||
Clone and build the external solvers.
|
||||
|
||||
```bash
|
||||
cd ${{ github.workspace }}
|
||||
|
|
@ -130,9 +130,35 @@ else
|
|||
fi
|
||||
export LD_LIBRARY_PATH="$Z3_LIB_DIR${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}"
|
||||
echo "ZIPT build complete."
|
||||
|
||||
# Build cvc5 from source (minimal build with string support)
|
||||
git clone --depth=1 https://github.com/cvc5/cvc5.git /tmp/cvc5
|
||||
cd /tmp/cvc5
|
||||
./configure.sh --auto-download --static-binary 2>&1 | tail -30
|
||||
cd build
|
||||
make -j"$(nproc)" 2>&1 | tail -40
|
||||
|
||||
if [ -x "/tmp/cvc5/build/bin/cvc5" ]; then
|
||||
echo "cvc5 binary: /tmp/cvc5/build/bin/cvc5"
|
||||
else
|
||||
echo "WARNING: cvc5 build failed or binary missing"
|
||||
fi
|
||||
|
||||
# Build Ostrich2 from source
|
||||
cd ${{ github.workspace }}
|
||||
git clone --depth=1 https://github.com/uuverifiers/ostrich.git /tmp/ostrich2
|
||||
cd /tmp/ostrich2
|
||||
sudo apt-get install -y openjdk-17-jdk-headless sbt 2>/dev/null || true
|
||||
sbt assembly 2>&1 | tail -40
|
||||
|
||||
if [ -x "/tmp/ostrich2/ostrich" ]; then
|
||||
echo "Ostrich2 launcher: /tmp/ostrich2/ostrich"
|
||||
else
|
||||
echo "WARNING: Ostrich2 build failed or launcher missing"
|
||||
fi
|
||||
```
|
||||
|
||||
If the ZIPT build fails, note the error in the report but continue with the Z3-only benchmark columns.
|
||||
If any external solver build fails, note the error in the report and continue with the remaining solvers.
|
||||
|
||||
## Phase 2b: Extract Benchmark Files
|
||||
|
||||
|
|
@ -160,12 +186,14 @@ Once the benchmark files are confirmed, call the `noop` safe-output tool with th
|
|||
|
||||
## Phase 3: Run Benchmarks
|
||||
|
||||
Run every file from `/tmp/all_ostrich_files.txt` with both Z3 string solvers and ZIPT. Use a **5-second timeout** per run.
|
||||
Run every file from `/tmp/all_ostrich_files.txt` with both Z3 string solvers plus ZIPT, cvc5, and Ostrich2. Use a **5-second timeout** per run.
|
||||
|
||||
For each file, run:
|
||||
1. `z3 smt.string_solver=seq -T:5 <file>` — seq solver
|
||||
2. `z3 smt.string_solver=nseq -T:5 <file>` — nseq (ZIPT) solver
|
||||
3. `dotnet <ZIPT.dll> -t:5000 <file>` — standalone ZIPT solver (milliseconds)
|
||||
4. `cvc5 --lang smt2 --tlimit-per=5000 <file>` — cvc5 (milliseconds)
|
||||
5. `ostrich -timeout=5 <file>` — Ostrich2 (seconds; fallback to outer timeout if unsupported)
|
||||
|
||||
Capture:
|
||||
- **Verdict**: `sat`, `unsat`, `unknown`, `timeout` (if exit code indicates timeout or process is killed), or `bug` (if a solver crashes / produces a non-standard result)
|
||||
|
|
@ -180,8 +208,14 @@ set -euo pipefail
|
|||
|
||||
Z3=${{ github.workspace }}/build/z3
|
||||
ZIPT_DLL=$(find /tmp/zipt/ZIPT/bin/Release -name "ZIPT.dll" 2>/dev/null | head -1)
|
||||
CVC5_BIN=/tmp/cvc5/build/bin/cvc5
|
||||
OSTRICH2_BIN=/tmp/ostrich2/ostrich
|
||||
ZIPT_AVAILABLE=false
|
||||
[ -n "$ZIPT_DLL" ] && ZIPT_AVAILABLE=true
|
||||
CVC5_AVAILABLE=false
|
||||
[ -x "$CVC5_BIN" ] && CVC5_AVAILABLE=true
|
||||
OSTRICH2_AVAILABLE=false
|
||||
[ -x "$OSTRICH2_BIN" ] && OSTRICH2_AVAILABLE=true
|
||||
|
||||
# Ensure libz3.so is on the dynamic-linker path for the .NET runtime
|
||||
export LD_LIBRARY_PATH=${{ github.workspace }}/build${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}
|
||||
|
|
@ -189,27 +223,33 @@ export LD_LIBRARY_PATH=${{ github.workspace }}/build${LD_LIBRARY_PATH:+:$LD_LIBR
|
|||
RESULTS=/tmp/benchmark_results.tsv
|
||||
mkdir -p /tmp/ostrich_run
|
||||
|
||||
echo -e "file\tseq_verdict\tseq_time\tnseq_verdict\tnseq_time\tzipt_verdict\tzipt_time\tnotes" > "$RESULTS"
|
||||
echo -e "file\tseq_verdict\tseq_time\tnseq_verdict\tnseq_time\tzipt_verdict\tzipt_time\tcvc5_verdict\tcvc5_time\tostrich2_verdict\tostrich2_time\tnotes" > "$RESULTS"
|
||||
|
||||
run_z3_seq() {
|
||||
local file="$1"
|
||||
run_and_parse() {
|
||||
local sat_pattern="$1"
|
||||
local unsat_pattern="$2"
|
||||
local unknown_pattern="$3"
|
||||
local bug_pattern="$4"
|
||||
shift 4
|
||||
local start end elapsed verdict output exit_code
|
||||
|
||||
start=$(date +%s%3N)
|
||||
output=$(timeout 7 "$Z3" "smt.string_solver=seq" -T:5 "$file" 2>&1)
|
||||
set +e
|
||||
output=$("$@" 2>&1)
|
||||
exit_code=$?
|
||||
set -e
|
||||
end=$(date +%s%3N)
|
||||
elapsed=$(echo "scale=3; ($end - $start) / 1000" | bc)
|
||||
|
||||
if echo "$output" | grep -q "^unsat"; then
|
||||
verdict="unsat"
|
||||
elif echo "$output" | grep -q "^sat"; then
|
||||
verdict="sat"
|
||||
elif echo "$output" | grep -q "^unknown"; then
|
||||
verdict="unknown"
|
||||
elif [ "$exit_code" -eq 124 ]; then
|
||||
if [ "$exit_code" -eq 124 ]; then
|
||||
verdict="timeout"
|
||||
elif echo "$output" | grep -qi "error\|assertion\|segfault\|SIGABRT\|exception"; then
|
||||
elif echo "$output" | grep -Eqi "$unsat_pattern"; then
|
||||
verdict="unsat"
|
||||
elif echo "$output" | grep -Eqi "$sat_pattern"; then
|
||||
verdict="sat"
|
||||
elif echo "$output" | grep -Eqi "$unknown_pattern"; then
|
||||
verdict="unknown"
|
||||
elif echo "$output" | grep -Eqi "$bug_pattern"; then
|
||||
verdict="bug"
|
||||
else
|
||||
verdict="unknown"
|
||||
|
|
@ -218,64 +258,53 @@ run_z3_seq() {
|
|||
echo "$verdict $elapsed"
|
||||
}
|
||||
|
||||
run_z3_seq() {
|
||||
local file="$1"
|
||||
run_and_parse "^sat$" "^unsat$" "^unknown$" "error|assertion|segfault|SIGABRT|exception" \
|
||||
timeout 7 "$Z3" "smt.string_solver=seq" -T:5 "$file"
|
||||
}
|
||||
|
||||
run_z3_nseq() {
|
||||
local file="$1"
|
||||
local start end elapsed verdict output exit_code
|
||||
|
||||
start=$(date +%s%3N)
|
||||
output=$(timeout 7 "$Z3" "smt.string_solver=nseq" -T:5 "$file" 2>&1)
|
||||
exit_code=$?
|
||||
end=$(date +%s%3N)
|
||||
elapsed=$(echo "scale=3; ($end - $start) / 1000" | bc)
|
||||
|
||||
if echo "$output" | grep -q "^unsat"; then
|
||||
verdict="unsat"
|
||||
elif echo "$output" | grep -q "^sat"; then
|
||||
verdict="sat"
|
||||
elif echo "$output" | grep -q "^unknown"; then
|
||||
verdict="unknown"
|
||||
elif [ "$exit_code" -eq 124 ]; then
|
||||
verdict="timeout"
|
||||
elif echo "$output" | grep -qi "error\|assertion\|segfault\|SIGABRT\|exception"; then
|
||||
verdict="bug"
|
||||
else
|
||||
verdict="unknown"
|
||||
fi
|
||||
|
||||
echo "$verdict $elapsed"
|
||||
run_and_parse "^sat$" "^unsat$" "^unknown$" "error|assertion|segfault|SIGABRT|exception" \
|
||||
timeout 7 "$Z3" "smt.string_solver=nseq" -T:5 "$file"
|
||||
}
|
||||
|
||||
run_zipt() {
|
||||
local file="$1"
|
||||
local start end elapsed verdict output exit_code
|
||||
|
||||
if [ "$ZIPT_AVAILABLE" != "true" ]; then
|
||||
echo "n/a 0.000"
|
||||
return
|
||||
fi
|
||||
|
||||
start=$(date +%s%3N)
|
||||
# ZIPT prints the filename on the first line, then SAT/UNSAT/UNKNOWN on subsequent lines
|
||||
output=$(timeout 7 dotnet "$ZIPT_DLL" -t:5000 "$file" 2>&1)
|
||||
exit_code=$?
|
||||
end=$(date +%s%3N)
|
||||
elapsed=$(echo "scale=3; ($end - $start) / 1000" | bc)
|
||||
run_and_parse "^SAT$" "^UNSAT$" "^UNKNOWN$" "error|crash|exception|Unsupported" \
|
||||
timeout 7 dotnet "$ZIPT_DLL" -t:5000 "$file"
|
||||
}
|
||||
|
||||
if echo "$output" | grep -qi "^UNSAT$"; then
|
||||
verdict="unsat"
|
||||
elif echo "$output" | grep -qi "^SAT$"; then
|
||||
verdict="sat"
|
||||
elif echo "$output" | grep -qi "^UNKNOWN$"; then
|
||||
verdict="unknown"
|
||||
elif [ "$exit_code" -eq 124 ]; then
|
||||
verdict="timeout"
|
||||
elif echo "$output" | grep -qi "error\|crash\|exception\|Unsupported"; then
|
||||
verdict="bug"
|
||||
else
|
||||
verdict="unknown"
|
||||
run_cvc5() {
|
||||
local file="$1"
|
||||
|
||||
if [ "$CVC5_AVAILABLE" != "true" ]; then
|
||||
echo "n/a 0.000"
|
||||
return
|
||||
fi
|
||||
|
||||
echo "$verdict $elapsed"
|
||||
run_and_parse "^sat$" "^unsat$" "^unknown$" "error|fatal|exception|segfault|assert" \
|
||||
timeout 7 "$CVC5_BIN" --lang smt2 --tlimit-per=5000 "$file"
|
||||
}
|
||||
|
||||
run_ostrich2() {
|
||||
local file="$1"
|
||||
|
||||
if [ "$OSTRICH2_AVAILABLE" != "true" ]; then
|
||||
echo "n/a 0.000"
|
||||
return
|
||||
fi
|
||||
|
||||
run_and_parse "^sat$" "^unsat$" "^unknown$" "error|fatal|exception|segfault|assert|Unsupported" \
|
||||
timeout 7 "$OSTRICH2_BIN" -timeout=5 "$file"
|
||||
}
|
||||
|
||||
COUNTER=0
|
||||
|
|
@ -286,6 +315,8 @@ while IFS= read -r file; do
|
|||
seq_result=$(run_z3_seq "$file")
|
||||
nseq_result=$(run_z3_nseq "$file")
|
||||
zipt_result=$(run_zipt "$file")
|
||||
cvc5_result=$(run_cvc5 "$file")
|
||||
ostrich2_result=$(run_ostrich2 "$file")
|
||||
|
||||
seq_verdict=$(echo "$seq_result" | cut -d' ' -f1)
|
||||
seq_time=$(echo "$seq_result" | cut -d' ' -f2)
|
||||
|
|
@ -293,6 +324,10 @@ while IFS= read -r file; do
|
|||
nseq_time=$(echo "$nseq_result" | cut -d' ' -f2)
|
||||
zipt_verdict=$(echo "$zipt_result" | cut -d' ' -f1)
|
||||
zipt_time=$(echo "$zipt_result" | cut -d' ' -f2)
|
||||
cvc5_verdict=$(echo "$cvc5_result" | cut -d' ' -f1)
|
||||
cvc5_time=$(echo "$cvc5_result" | cut -d' ' -f2)
|
||||
ostrich2_verdict=$(echo "$ostrich2_result" | cut -d' ' -f1)
|
||||
ostrich2_time=$(echo "$ostrich2_result" | cut -d' ' -f2)
|
||||
|
||||
# Flag soundness disagreement when any two definitive verdicts disagree
|
||||
notes=""
|
||||
|
|
@ -300,6 +335,8 @@ while IFS= read -r file; do
|
|||
[ "$seq_verdict" = "sat" ] || [ "$seq_verdict" = "unsat" ] && definitive_map[seq]="$seq_verdict"
|
||||
[ "$nseq_verdict" = "sat" ] || [ "$nseq_verdict" = "unsat" ] && definitive_map[nseq]="$nseq_verdict"
|
||||
[ "$zipt_verdict" = "sat" ] || [ "$zipt_verdict" = "unsat" ] && definitive_map[zipt]="$zipt_verdict"
|
||||
[ "$cvc5_verdict" = "sat" ] || [ "$cvc5_verdict" = "unsat" ] && definitive_map[cvc5]="$cvc5_verdict"
|
||||
[ "$ostrich2_verdict" = "sat" ] || [ "$ostrich2_verdict" = "unsat" ] && definitive_map[ostrich2]="$ostrich2_verdict"
|
||||
has_sat=false; has_unsat=false
|
||||
for v in "${definitive_map[@]}"; do
|
||||
[ "$v" = "sat" ] && has_sat=true
|
||||
|
|
@ -309,8 +346,8 @@ while IFS= read -r file; do
|
|||
notes="SOUNDNESS_DISAGREEMENT"
|
||||
fi
|
||||
|
||||
echo -e "$fname\t$seq_verdict\t$seq_time\t$nseq_verdict\t$nseq_time\t$zipt_verdict\t$zipt_time\t$notes" >> "$RESULTS"
|
||||
echo "[$COUNTER] [$fname] seq=$seq_verdict(${seq_time}s) nseq=$nseq_verdict(${nseq_time}s) zipt=$zipt_verdict(${zipt_time}s) $notes"
|
||||
echo -e "$fname\t$seq_verdict\t$seq_time\t$nseq_verdict\t$nseq_time\t$zipt_verdict\t$zipt_time\t$cvc5_verdict\t$cvc5_time\t$ostrich2_verdict\t$ostrich2_time\t$notes" >> "$RESULTS"
|
||||
echo "[$COUNTER] [$fname] seq=$seq_verdict(${seq_time}s) nseq=$nseq_verdict(${nseq_time}s) zipt=$zipt_verdict(${zipt_time}s) cvc5=$cvc5_verdict(${cvc5_time}s) ostrich2=$ostrich2_verdict(${ostrich2_time}s) $notes"
|
||||
done < /tmp/all_ostrich_files.txt
|
||||
|
||||
echo "Benchmark run complete. Results saved to $RESULTS"
|
||||
|
|
@ -324,7 +361,7 @@ Read `/tmp/benchmark_results.tsv` and compute statistics. Then generate a Markdo
|
|||
|
||||
Compute:
|
||||
- **Total benchmarks**: total number of files run
|
||||
- **Per solver (seq, nseq, and ZIPT)**: count of sat / unsat / unknown / timeout / bug verdicts
|
||||
- **Per solver (seq, nseq, ZIPT, cvc5, and Ostrich2)**: count of sat / unsat / unknown / timeout / bug verdicts
|
||||
- **Total time used**: sum of all times for each solver
|
||||
- **Average time per benchmark**: total_time / total_files
|
||||
- **Soundness disagreements**: files where any two solvers that both returned a definitive answer disagree
|
||||
|
|
@ -338,21 +375,21 @@ Format the report as a GitHub Discussion post (GitHub-flavored Markdown):
|
|||
**Date**: <today's date>
|
||||
**Branch**: c3
|
||||
**Benchmark set**: Ostrich (all files from tests/ostrich.zip)
|
||||
**Timeout**: 5 seconds per benchmark (`-T:5` for Z3; `-t:5000` for ZIPT)
|
||||
**Timeout**: 5 seconds per benchmark (`-T:5` for Z3; `-t:5000` for ZIPT; `--tlimit-per=5000` for cvc5; `-timeout=5` for Ostrich2)
|
||||
|
||||
---
|
||||
|
||||
### Summary
|
||||
|
||||
| Metric | seq solver | nseq solver | ZIPT solver |
|
||||
|--------|-----------|-------------|-------------|
|
||||
| sat | X | X | X |
|
||||
| unsat | X | X | X |
|
||||
| unknown | X | X | X |
|
||||
| timeout | X | X | X |
|
||||
| bug/crash | X | X | X |
|
||||
| **Total time (s)** | X.XXX | X.XXX | X.XXX |
|
||||
| **Avg time/benchmark (s)** | X.XXX | X.XXX | X.XXX |
|
||||
| Metric | seq solver | nseq solver | ZIPT solver | cvc5 solver | Ostrich2 solver |
|
||||
|--------|-----------|-------------|-------------|-------------|-----------------|
|
||||
| sat | X | X | X | X | X |
|
||||
| unsat | X | X | X | X | X |
|
||||
| unknown | X | X | X | X | X |
|
||||
| timeout | X | X | X | X | X |
|
||||
| bug/crash | X | X | X | X | X |
|
||||
| **Total time (s)** | X.XXX | X.XXX | X.XXX | X.XXX | X.XXX |
|
||||
| **Avg time/benchmark (s)** | X.XXX | X.XXX | X.XXX | X.XXX | X.XXX |
|
||||
|
||||
**Soundness disagreements** (any two solvers return conflicting sat/unsat): N
|
||||
|
||||
|
|
@ -363,10 +400,10 @@ Format the report as a GitHub Discussion post (GitHub-flavored Markdown):
|
|||
<details>
|
||||
<summary>Click to expand full per-file table</summary>
|
||||
|
||||
| # | File | seq verdict | seq time (s) | nseq verdict | nseq time (s) | ZIPT verdict | ZIPT time (s) | Notes |
|
||||
|---|------|-------------|-------------|--------------|--------------|--------------|--------------|-------|
|
||||
| 1 | benchmark_0001.smt2 | sat | 0.123 | sat | 0.456 | sat | 0.789 | |
|
||||
| ... | ... | ... | ... | ... | ... | ... | ... | ... |
|
||||
| # | File | seq verdict | seq time (s) | nseq verdict | nseq time (s) | ZIPT verdict | ZIPT time (s) | cvc5 verdict | cvc5 time (s) | Ostrich2 verdict | Ostrich2 time (s) | Notes |
|
||||
|---|------|-------------|-------------|--------------|--------------|--------------|--------------|--------------|---------------|------------------|-------------------|-------|
|
||||
| 1 | benchmark_0001.smt2 | sat | 0.123 | sat | 0.456 | sat | 0.789 | sat | 0.111 | sat | 0.222 | |
|
||||
| ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... |
|
||||
|
||||
</details>
|
||||
|
||||
|
|
@ -402,12 +439,13 @@ Post the Markdown report as a new GitHub Discussion using the `create-discussion
|
|||
- **Synchronous builds only**: Never run `ninja` (or any other build command) in the background using `&`. Running the build concurrently with LLM inference causes the agent process to be killed by the OOM killer (exit 137) because C++ compilation and the LLM together exceed available RAM. Always wait for each build command to finish before proceeding.
|
||||
- **Release build**: The build uses `CMAKE_BUILD_TYPE=Release` for lower memory footprint and faster compilation on the GitHub Actions runner. The benchmark only needs verdict and timing output; no `-tr:` trace flags are used.
|
||||
- **Run all benchmarks**: Unlike the QF_S workflow, run every file in the archive — do not randomly sample.
|
||||
- **5-second timeout**: Pass `-T:5` to Z3 (both seq and nseq) and `-t:5000` to ZIPT (milliseconds). Use `timeout 7` as the outer OS-level guard to allow the solver to exit cleanly before being killed.
|
||||
- **5-second timeout**: Pass `-T:5` to Z3 (both seq and nseq), `-t:5000` to ZIPT, `--tlimit-per=5000` to cvc5, and `-timeout=5` to Ostrich2. Use `timeout 7` as the outer OS-level guard to allow solvers to exit cleanly before being killed.
|
||||
- **Be precise with timing**: Use millisecond-precision timestamps and report times in seconds with 3 decimal places.
|
||||
- **Distinguish timeout from unknown**: A timeout is different from `(unknown)` returned by a solver within its time budget.
|
||||
- **ZIPT output format**: ZIPT prints the input filename on the first line, then `SAT`, `UNSAT`, or `UNKNOWN` on subsequent lines. Parse accordingly.
|
||||
- **cvc5 and Ostrich2 availability**: If cvc5 or Ostrich2 build/setup fails, keep benchmarking with available solvers and emit `n/a` verdict/time for unavailable ones.
|
||||
- **Report soundness bugs prominently**: If any benchmark shows a conflict between any two solvers that both returned a definitive sat/unsat answer, highlight it as a critical finding and name which pair disagrees.
|
||||
- **Handle build failures gracefully**: If Z3 fails to build, report the error and create a brief discussion noting the build failure. If ZIPT fails to build, continue with only the seq/nseq columns and note `n/a` for ZIPT results.
|
||||
- **Handle build failures gracefully**: If Z3 fails to build, report the error and create a brief discussion noting the build failure. If any external solver (ZIPT/cvc5/Ostrich2) fails to build, continue with available solver columns and note `n/a` for unavailable solvers.
|
||||
- **Large report**: Always put the per-file table in a `<details>` collapsible section since there may be many files.
|
||||
- **Progress logging**: Print a line per file as you run it (e.g., `[N] [filename] seq=...`) so the workflow log shows progress even for large benchmark sets.
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue