diff options
author | wuestholz <unknown> | 2010-05-02 15:49:05 +0000 |
---|---|---|
committer | wuestholz <unknown> | 2010-05-02 15:49:05 +0000 |
commit | 40b4e8225f085369c0f8909a2d116c2cf96fbc1a (patch) | |
tree | 6c927011c10680dd98a030040841f0ee2889fe50 /Source | |
parent | 073a72e337da812d3e905aec31bcb17399ae34fc (diff) |
Updated to find the latest version of Z3 (2.6).
Diffstat (limited to 'Source')
-rw-r--r-- | Source/Provers/Simplify/ProverInterface.ssc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Provers/Simplify/ProverInterface.ssc b/Source/Provers/Simplify/ProverInterface.ssc index 74efceb4..f8845576 100644 --- a/Source/Provers/Simplify/ProverInterface.ssc +++ b/Source/Provers/Simplify/ProverInterface.ssc @@ -198,7 +198,7 @@ namespace Microsoft.Boogie.Simplify // Initialize '_proverPath'
_proverPath = Path.Combine(CodebaseString(), proverExe);
string firstTry = _proverPath;
- for (int minorVersion = 5; true; minorVersion--) {
+ for (int minorVersion = 6; true; minorVersion--) {
if (File.Exists(_proverPath)) {
return; // all seems good
}
|