Skip to content

Commit

Permalink
Fix cvc4 and xsv paths
Browse files Browse the repository at this point in the history
  • Loading branch information
mwillsey committed Aug 12, 2022
1 parent 7a04933 commit e4217ed
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions scripts/cvc4-eval/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@ SHELL=/usr/bin/env bash
all:

rust-src=$(shell find ../../src/ -type f)
cvc4=./cvc4-1.8-x86_64-linux-opt \

# check for the hardcoded programs that are in the VM
xsv=$(shell command -v ./xsv || command -v xsv)
cvc4=$(shell command -v ./cvc4-1.8-x86_64-linux-opt || command -v cvc4) \
--sygus-rr-synth \
--sygus-rr-synth-check \
--no-sygus-sym-break \
Expand Down Expand Up @@ -98,11 +101,11 @@ latex-report: $(diffs)

.PHONY: report
report: $(diffs)
python3 compare.py $^ | ./xsv table
python3 compare.py $^ | $(xsv) table

.PHONY: report-no-consts
report-no-consts: $(diffs-no-consts)
python3 compare.py $^ | ./xsv table
python3 compare.py $^ | $(xsv) table

.PHONY: latex-report-no-consts
latex-report-no-consts: $(diffs-no-consts)
Expand Down

0 comments on commit e4217ed

Please sign in to comment.