summaryrefslogtreecommitdiff
path: root/src/util/util_model.h
blob: 97010dd455424769b46664901fe52dfd55d0efff (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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/*********************                                                        */
/*! \file model.h
 ** \verbatim
 ** Original author: ajreynol
 ** Major contributors: mdeters
 ** Minor contributors (to current version): none
 ** This file is part of the CVC4 prototype.
 ** Copyright (c) 2009-2012  The Analysis of Computer Systems Group (ACSys)
 ** Courant Institute of Mathematical Sciences
 ** New York University
 ** See the file COPYING in the top-level source directory for licensing
 ** information.\endverbatim
 **
 ** \brief Model class
 **/

#include "cvc4_public.h"

#ifndef __CVC4__MODEL_H
#define __CVC4__MODEL_H

#include <iostream>
#include <vector>

#include "expr/expr.h"
#include "util/cardinality.h"

namespace CVC4 {

class CVC4_PUBLIC Command;
class CVC4_PUBLIC SmtEngine;

class CVC4_PUBLIC Model {
private:
  /** The SmtEngine we're associated to */
  const SmtEngine& d_smt;
public:
  /** construct the base class */
  Model();
  /** virtual destructor */
  virtual ~Model() { }
  /** get number of commands to report */
  size_t getNumCommands() const;
  /** get command */
  const Command* getCommand(size_t i) const;
public:
  /** get value for expression */
  virtual Expr getValue(Expr expr) = 0;
  /** get cardinality for sort */
  virtual Cardinality getCardinality(Type t) = 0;
  /** write the model to a stream */
  virtual void toStream(std::ostream& out) = 0;
};/* class Model */

class ModelBuilder
{
public:
  ModelBuilder(){}
  virtual ~ModelBuilder(){}
  virtual void buildModel( Model* m, bool fullModel ) = 0;
};/* class ModelBuilder */

}/* CVC4 namespace */

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