Skip to content

2LS updates #62

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jan 5, 2021
Merged
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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion 2ls.inc
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ run()
fi
fi
else
PROPERTY="$PROPERTY --heap-values-refine --sympath --k-induction --competition-mode"
PROPERTY="$PROPERTY --heap --values-refine --k-induction --competition-mode"

# run the tool
$TOOL_BINARY --graphml-witness $LOG.witness --object-bits $OBJ_BITS $PROPERTY \
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,14 @@ cbmc.zip: cbmc.inc tool-wrapper.inc $(CBMC)/LICENSE $(CBMC)/src/cbmc/cbmc $(CBMC
cd $(basename $@) && rm cbmc cbmc-binary goto-cc LICENSE README
rmdir $(basename $@)

2ls.zip: 2ls.inc tool-wrapper.inc $(2LS)/LICENSE $(2LS)/src/2ls/2ls $(2LS)/cbmc/src/goto-cc/goto-cc sv-comp-readme.sh
2ls.zip: 2ls.inc tool-wrapper.inc $(2LS)/LICENSE $(2LS)/src/2ls/2ls $(2LS)/lib/cbmc/src/goto-cc/goto-cc sv-comp-readme.sh
mkdir -p $(basename $@)
$(MAKE) 2ls-wrapper
mv 2ls-wrapper $(basename $@)/2ls
./sv-comp-readme.sh $(basename $@) > $(basename $@)/README
cp -L $(2LS)/LICENSE $(basename $@)/
cp -L $(2LS)/src/2ls/2ls $(basename $@)/2ls-binary
cp -L $(2LS)/cbmc/src/goto-cc/goto-cc $(basename $@)/
cp -L $(2LS)/lib/cbmc/src/goto-cc/goto-cc $(basename $@)/
chmod a+rX $(basename $@)/*
zip -r $@ $(basename $@)
cd $(basename $@) && rm 2ls 2ls-binary goto-cc LICENSE README
Expand Down