summaryrefslogtreecommitdiff
path: root/src/proof
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@cs.nyu.edu>2013-06-03 18:18:24 -0400
committerMorgan Deters <mdeters@cs.nyu.edu>2013-12-24 10:55:46 -0500
commit8cde77abf105c7c712b72da6e25f695a687559a1 (patch)
tree0460a176b91586b73d6970323dec69ad3ba36259 /src/proof
parentff7d33c2f75668fde0f149943e3cf1bedad1102f (diff)
Java datatype API fixups, datatype API examples
Diffstat (limited to 'src/proof')
-rw-r--r--src/proof/sat_proof.h2
-rw-r--r--src/proof/theory_proof.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/proof/sat_proof.h b/src/proof/sat_proof.h
index 477eeeb99..d555ca529 100644
--- a/src/proof/sat_proof.h
+++ b/src/proof/sat_proof.h
@@ -253,7 +253,7 @@ public:
virtual void printResolutions(std::ostream& out, std::ostream& paren) = 0;
};/* class SatProof */
-class LFSCSatProof: public SatProof {
+class LFSCSatProof : public SatProof {
private:
void printResolution(ClauseId id, std::ostream& out, std::ostream& paren);
public:
diff --git a/src/proof/theory_proof.h b/src/proof/theory_proof.h
index 739299b7d..0a7772a4b 100644
--- a/src/proof/theory_proof.h
+++ b/src/proof/theory_proof.h
@@ -44,7 +44,7 @@ namespace CVC4 {
void addDeclaration(Expr atom);
};
- class LFSCTheoryProof: public TheoryProof {
+ class LFSCTheoryProof : public TheoryProof {
void printDeclarations(std::ostream& os, std::ostream& paren);
public:
static void printTerm(Expr term, std::ostream& os);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback