summaryrefslogtreecommitdiff
path: root/src/util/bitvector.cpp
blob: 12506511846943127d6f31b12f9e5eb3eceb8876 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 * 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();
}

std::ostream& operator <<(std::ostream& os, const BitVectorExtract& bv) {
  return os << "[" << bv.high << ":" << bv.low << "]";
}

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