namespace CVC4 {
+void UnsatCore::initMessage() const {
+ Debug("core") << "UnsatCore size " << d_core.size() << std::endl;
+}
+
UnsatCore::const_iterator UnsatCore::begin() const {
return d_core.begin();
}
#include <iostream>
#include <vector>
#include "expr/expr.h"
-#include "util/output.h"
namespace CVC4 {
std::vector<Expr> d_core;
+ void initMessage() const;
+
public:
UnsatCore() : d_smt(NULL) {}
template <class T>
UnsatCore(SmtEngine* smt, T begin, T end) : d_smt(smt), d_core(begin, end) {
- Debug("core") << "UnsatCore size " << d_core.size() << std::endl;
+ initMessage();
}
~UnsatCore() {}