summaryrefslogtreecommitdiff
path: root/src/main/time_limit.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/time_limit.cpp')
-rw-r--r--src/main/time_limit.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/time_limit.cpp b/src/main/time_limit.cpp
index c0fc6846a..28a0087bb 100644
--- a/src/main/time_limit.cpp
+++ b/src/main/time_limit.cpp
@@ -56,7 +56,7 @@
#include <cstring>
#include "base/exception.h"
-#include "options/options_public.h"
+#include "options/base_options.h"
#include "signal_handlers.h"
namespace cvc5 {
@@ -80,7 +80,7 @@ TimeLimit::~TimeLimit()
TimeLimit install_time_limit(const Options& opts)
{
- unsigned long ms = options::getCumulativeTimeLimit(opts);
+ uint64_t ms = opts.base.cumulativeMillisecondLimit;
// Skip if no time limit shall be set.
if (ms == 0) {
return TimeLimit();
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback