projects
/
cvc5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ec6fe33
)
Use proper variable name (#6670)
author
Gereon Kremer
<nafur42@gmail.com>
Wed, 2 Jun 2021 16:01:08 +0000
(18:01 +0200)
committer
GitHub
<noreply@github.com>
Wed, 2 Jun 2021 16:01:08 +0000
(16:01 +0000)
This PR fixes the driver which used an incorrect variable name in competition mode.
src/main/driver_unified.cpp
patch
|
blob
|
history
diff --git
a/src/main/driver_unified.cpp
b/src/main/driver_unified.cpp
index 5785505d05b143f620e38fbb6c50353f3f384e63..79c98924af98d4831e9aeb068db78cb996cd8855 100644
(file)
--- a/
src/main/driver_unified.cpp
+++ b/
src/main/driver_unified.cpp
@@
-497,9
+497,9
@@
int runCvc5(int argc, char* argv[], Options& opts)
}
#ifdef CVC5_COMPETITION_MODE
- if (cvc5::options::getOut(opt
ion
s) != nullptr)
+ if (cvc5::options::getOut(opts) != nullptr)
{
- cvc5::options::getOut(opt
ion
s) << std::flush;
+ cvc5::options::getOut(opts) << std::flush;
}
// exit, don't return (don't want destructors to run)
// _exit() from unistd.h doesn't run global destructors