summaryrefslogtreecommitdiff
path: root/src/prop/bv_sat_solver_notify.h
blob: 77163cfe607d3166dd0eea55c37a6de61ed02007 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/*********************                                                        */
/*! \file bv_sat_solver_notify.h
 ** \verbatim
 ** Top contributors (to current version):
 **   Liana Hadarean, Alex Ozdemir, Tim King
 ** This file is part of the CVC4 project.
 ** Copyright (c) 2009-2019 by the authors listed in the file AUTHORS
 ** in the top-level source directory) and their institutional affiliations.
 ** All rights reserved.  See the file COPYING in the top-level source
 ** directory for licensing information.\endverbatim
 **
 ** \brief The interface for things that want to recieve notification from the
 **        SAT solver
 **/

#include "cvc4_private.h"

#ifndef CVC4__PROP__BVSATSOLVERNOTIFY_H
#define CVC4__PROP__BVSATSOLVERNOTIFY_H

#include "prop/sat_solver_types.h"

namespace CVC4 {
namespace prop {

class BVSatSolverNotify {
public:

  virtual ~BVSatSolverNotify() {};

  /**
   * If the notify returns false, the solver will break out of whatever it's currently doing
   * with an "unknown" answer.
   */
  virtual bool notify(SatLiteral lit) = 0;

  /**
   * Notify about a learnt clause.
   */
  virtual void notify(SatClause& clause) = 0;
  virtual void spendResource(unsigned amount) = 0;
  virtual void safePoint(unsigned amount) = 0;

};/* class BVSatSolverInterface::Notify */

}
}

#endif
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback