File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -7,7 +7,10 @@ SHELL=/usr/bin/env bash
77all :
88
99rust-src =$(shell find ../../src/ -type f)
10- cvc4 =./cvc4-1.8-x86_64-linux-opt \
10+
11+ # check for the hardcoded programs that are in the VM
12+ xsv =$(shell command -v ./xsv || command -v xsv)
13+ cvc4 =$(shell command -v ./cvc4-1.8-x86_64-linux-opt || command -v cvc4) \
1114 --sygus-rr-synth \
1215 --sygus-rr-synth-check \
1316 --no-sygus-sym-break \
@@ -98,11 +101,11 @@ latex-report: $(diffs)
98101
99102.PHONY : report
100103report : $(diffs )
101- python3 compare.py $^ | ./ xsv table
104+ python3 compare.py $^ | $( xsv ) table
102105
103106.PHONY : report-no-consts
104107report-no-consts : $(diffs-no-consts )
105- python3 compare.py $^ | ./ xsv table
108+ python3 compare.py $^ | $( xsv ) table
106109
107110.PHONY : latex-report-no-consts
108111latex-report-no-consts : $(diffs-no-consts )
You can’t perform that action at this time.
0 commit comments