summaryrefslogtreecommitdiff
path: root/src/prop/cnf_stream.cpp
diff options
context:
space:
mode:
authorLiana Hadarean <lianahady@gmail.com>2012-02-29 20:33:43 +0000
committerLiana Hadarean <lianahady@gmail.com>2012-02-29 20:33:43 +0000
commit2821b7a47e779c7d4f189ffdffaebe4bdb5b9036 (patch)
tree16101f79b9c8927645fa896306c1e5cb83721332 /src/prop/cnf_stream.cpp
parent9062483193f4ec9b38aaa57b228cae1fb551566a (diff)
This should fix the debian build fails:
* removed bvpicosat directory as it is currently not used Cleared some of the flurry of warnings my previous merge caused in src/prop/
Diffstat (limited to 'src/prop/cnf_stream.cpp')
-rw-r--r--src/prop/cnf_stream.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/prop/cnf_stream.cpp b/src/prop/cnf_stream.cpp
index f2557a303..9f49d81a2 100644
--- a/src/prop/cnf_stream.cpp
+++ b/src/prop/cnf_stream.cpp
@@ -68,7 +68,7 @@ void CnfStream::assertClause(TNode node, SatClause& c) {
} else {
Assert(c.size() > 1);
NodeBuilder<> b(kind::OR);
- for(int i = 0; i < c.size(); ++i) {
+ for(unsigned i = 0; i < c.size(); ++i) {
b << getNode(c[i]);
}
Node n = b;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback