Skip to content
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

Spot and vampire fix #23

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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
8 changes: 3 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -245,12 +245,10 @@ Tools/E.tgz: Tools/.f
cd Tools ; curl -OL http://wwwlehre.dhbw-stuttgart.de/~sschulz/WORK/E_DOWNLOAD/$(eprover_version)/E.tgz

# vampire
Tools/vampire: Tools/Vampires
cp Tools/Vampires/vampire_x86_64 Tools/vampire
Tools/Vampires: Tools/vampire.zip
cd Tools ; unzip -D vampire.zip
Tools/vampire: Tools/vampire.zip
cd Tools ; unzip -d vampire vampire.zip
Tools/vampire.zip: Tools/.f
cd Tools ; curl -OL http://forsyte.at/wp-content/uploads/vampire.zip
cd Tools ; curl -L -o vampire.zip https://github.com/vprover/vampire/releases/download/v4.7/vampire4.7.zip

# spot/ltl2tgba
Tools/ltl2tgba: Tools/spot-$(spot_version)
Expand Down
10 changes: 5 additions & 5 deletions Sources/BoundedSynthesis/Options.swift
Original file line number Diff line number Diff line change
Expand Up @@ -43,16 +43,16 @@ public enum Target: String {
}

public enum SimplifcationLevel: String {
case small //new default, faster
case medium
case high
case small = "--small" //new default, faster
case medium = "--medium"
case high = "--high"

public static let allValues: [SimplifcationLevel] = [.small, .medium, .high]
}

public enum SimplifcationGoal: String {
case any //new default, faster
case small
case any = "--any" //new default, faster
case small = "--small"

public static let allValues: [SimplifcationGoal] = [.any, .small]
}
Expand Down