*** empty log message ***

This commit is contained in:
jiri
2009-11-12 21:01:19 +00:00
parent f44662bdab
commit 7f7c4aa553
33 changed files with 457 additions and 309 deletions

View File

@@ -21,6 +21,8 @@
#include "vec.h"
namespace LA {
//compressed storage of large bit vectors
//any reasonable compiler changes the dividions and modulos to shift/and instructions
@@ -75,7 +77,8 @@ public:
};
extern ostream & operator<<(ostream &s, const bitvector &x);
extern istream & operator>>(istream &s, bitvector &x);
extern std::ostream & operator<<(std::ostream &s, const bitvector &x);
extern std::istream & operator>>(std::istream &s, bitvector &x);
}//namespace
#endif