File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ runSolidityTestCustom testFile match timeout maxIter ffiAllowed rpcinfo projectT
3636 internalError $ " Error compiling test file " <> show testFile <> " in directory "
3737 <> show root <> " using project type " <> show projectType
3838 Right bo@ (BuildOutput contracts _) -> do
39- withSolvers Z3 1 1 timeout $ \ solvers -> do
39+ withSolvers Z3 3 1 timeout $ \ solvers -> do
4040 opts <- liftIO $ testOpts solvers root (Just bo) match maxIter ffiAllowed rpcinfo
4141 unitTest opts contracts
4242
Original file line number Diff line number Diff line change @@ -106,10 +106,10 @@ prop :: Testable prop => ReaderT Env IO prop -> Property
106106prop a = ioProperty $ runEnv testEnv a
107107
108108withDefaultSolver :: App m => (SolverGroup -> m a ) -> m a
109- withDefaultSolver = withSolvers Z3 1 1 Nothing
109+ withDefaultSolver = withSolvers Z3 3 1 Nothing
110110
111111withCVC5Solver :: App m => (SolverGroup -> m a ) -> m a
112- withCVC5Solver = withSolvers CVC5 1 1 Nothing
112+ withCVC5Solver = withSolvers CVC5 3 1 Nothing
113113
114114main :: IO ()
115115main = defaultMain tests
You can’t perform that action at this time.
0 commit comments