Merge pull request #9307 from ethereum/smt_reduce_resource_limit

[SMTChecker] Decrease Z3 resource limit
This commit is contained in:
Leonardo 2020-07-06 14:15:07 +02:00 committed by GitHub
commit 84d4b062a3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -48,9 +48,9 @@ public:
// Z3 "basic resources" limit.
// This is used to make the runs more deterministic and platform/machine independent.
// The tests start failing for Z3 with less than 20000000,
// The tests start failing for Z3 with less than 10000000,
// so using double that.
static int const resourceLimit = 40000000;
static int const resourceLimit = 20000000;
private:
void declareFunction(std::string const& _name, Sort const& _sort);