summaryrefslogtreecommitdiff
path: root/src/proof/theory_proof.cpp
blob: 948ced393072d3d3fa04b8e773e41af6c40b2388 (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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
/*********************                                                        */
/*! \file theory_proof.cpp
 ** \verbatim
 ** Original author: Liana Hadarean
 ** Major contributors: none
 ** Minor contributors (to current version): none
 ** This file is part of the CVC4 project.
 ** Copyright (c) 2009-2013  New York University and The University of Iowa
 ** See the file COPYING in the top-level source directory for licensing
 ** information.\endverbatim
 **
 ** \brief [[ Add one-line brief description here ]]
 **
 ** [[ Add lengthier description here ]]
 ** \todo document this file
 **/

#include "proof/theory_proof.h"

using namespace CVC4;

TheoryProof::TheoryProof()
  : d_atomSet()
{}
void TheoryProof::addAtom(Expr atom) {
  d_atomSet.insert(atom); 
  Assert (atom.getKind() == kind::EQUAL);
  addDeclaration(atom[0]);
  addDeclaration(atom[1]); 
}

void TheoryProof::addDeclaration(Expr term) {
  Type type = term.getType();
  if (type.isSort())
    d_sortDeclarations.insert(type);
  if (term.getKind() == kind::APPLY_UF) {
    Expr function = term.getOperator();
    d_termDeclarations.insert(function);
    Assert (term.getNumChildren() == 1);
    addDeclaration(term[0]); 
  } else {
    Assert (term.isVariable()); 
    Assert (type.isSort()); 
    d_termDeclarations.insert(term);
  }
}

void LFSCTheoryProof::printTerm(Expr term, std::ostream& os) {
  if (term.isVariable()) {
    os << term; 
    return;
  }
  Assert (term.getKind() == kind::APPLY_UF && term.getNumChildren() == 1);
  Expr func = term.getOperator();
  os << "(apply _ _ " << func << " ";
  printTerm(term[0], os);
  os <<")"; 
}

void LFSCTheoryProof::printFormula(Expr atom, std::ostream& os) {
  // should make this more general 
  Assert (atom.getKind() == kind::EQUAL);
  os << "(= ";
  os << atom[0].getType() <<" "; 
  printTerm(atom[0], os);
  os << " ";
  printTerm(atom[1], os);
  os << ")"; 
}

void LFSCTheoryProof::printDeclarations(std::ostream& os, std::ostream& paren) {
  // declaring the sorts
  for (SortSet::const_iterator it = d_sortDeclarations.begin(); it != d_sortDeclarations.end(); ++it) {
    os << "(% " << *it << " sort \n";
    paren << ")"; 
  }

  // declaring the terms
  for (TermSet::const_iterator it = d_termDeclarations.begin(); it != d_termDeclarations.end(); ++it) {
    Expr term = *it;
    
    os << "(% " << term << " (term "; 
    paren <<")"; 

    Type type = term.getType();
    if (type.isFunction()) {
      FunctionType ftype = (FunctionType)type; 
      Assert (ftype.getArity() == 1);
      Type arg_type = ftype.getArgTypes()[0];
      Type result_type = ftype.getRangeType();
      os << "(arrow " << arg_type << " " << result_type << "))\n"; 
    } else {
      Assert (term.isVariable());
      Assert (type.isSort());
      os << type << ")\n";
    }
  }
} 
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback