summaryrefslogtreecommitdiff
path: root/src/util/bitvector.cpp
blob: bea06f71a7288683b861a7454bb82a823fc151b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * bitvector.cpp
 *
 *  Created on: Apr 5, 2010
 *      Author: dejan
 */

#include "bitvector.h"

namespace CVC4 {

std::ostream& operator <<(std::ostream& os, const BitVector& bv) {
  return os << bv.toString();
}

}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback