summaryrefslogtreecommitdiff
path: root/src/util/predicate.h
blob: b4a9ff13174d755b20617769a35bb68d586159d3 (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
/*********************                                                        */
/*! \file predicate.h
 ** \verbatim
 ** Original author: mdeters
 ** Major contributors: none
 ** Minor contributors (to current version): none
 ** This file is part of the CVC4 prototype.
 ** Copyright (c) 2009-2012  New York University and The University of Iowa
 ** See the file COPYING in the top-level source directory for licensing
 ** information.\endverbatim
 **
 ** \brief Representation of predicates for predicate subtyping
 **
 ** Simple class to represent predicates for predicate subtyping.
 ** Instances of this class are carried as the payload of
 ** the CONSTANT-metakinded SUBTYPE_TYPE types.
 **/

#include "cvc4_public.h"

#ifndef __CVC4__PREDICATE_H
#define __CVC4__PREDICATE_H

#include "util/exception.h"

namespace CVC4 {

class Predicate;

std::ostream& operator<<(std::ostream& out, const Predicate& p) CVC4_PUBLIC;

struct CVC4_PUBLIC PredicateHashFunction {
  size_t operator()(const Predicate& p) const;
};/* class PredicateHashFunction */

}/* CVC4 namespace */

#include "expr/expr.h"

namespace CVC4 {

class CVC4_PUBLIC Predicate {

  Expr d_predicate;
  Expr d_witness;

public:

  Predicate(Expr e, Expr w = Expr()) throw(IllegalArgumentException);

  operator Expr() const;

  bool operator==(const Predicate& p) const;

  friend std::ostream& operator<<(std::ostream& out, const Predicate& p);
  friend size_t PredicateHashFunction::operator()(const Predicate& p) const;

};/* class Predicate */

}/* CVC4 namespace */

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