File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,10 @@ SHELL=/usr/bin/env bash
7
7
all :
8
8
9
9
rust-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) \
11
14
--sygus-rr-synth \
12
15
--sygus-rr-synth-check \
13
16
--no-sygus-sym-break \
@@ -98,11 +101,11 @@ latex-report: $(diffs)
98
101
99
102
.PHONY : report
100
103
report : $(diffs )
101
- python3 compare.py $^ | ./ xsv table
104
+ python3 compare.py $^ | $( xsv ) table
102
105
103
106
.PHONY : report-no-consts
104
107
report-no-consts : $(diffs-no-consts )
105
- python3 compare.py $^ | ./ xsv table
108
+ python3 compare.py $^ | $( xsv ) table
106
109
107
110
.PHONY : latex-report-no-consts
108
111
latex-report-no-consts : $(diffs-no-consts )
You can’t perform that action at this time.
0 commit comments