Use proper variable name (#6670)
authorGereon Kremer <nafur42@gmail.com>
Wed, 2 Jun 2021 16:01:08 +0000 (18:01 +0200)
committerGitHub <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

index 5785505d05b143f620e38fbb6c50353f3f384e63..79c98924af98d4831e9aeb068db78cb996cd8855 100644 (file)
@@ -497,9 +497,9 @@ int runCvc5(int argc, char* argv[], Options& opts)
     }
 
 #ifdef CVC5_COMPETITION_MODE
-    if (cvc5::options::getOut(options) != nullptr)
+    if (cvc5::options::getOut(opts) != nullptr)
     {
-      cvc5::options::getOut(options) << 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