RDKit
Open-source cheminformatics and machine learning.
|
a class for bit vectors that are densely occupied More...
#include <ExplicitBitVect.h>
Public Member Functions | |
ExplicitBitVect () | |
ExplicitBitVect (unsigned int size) | |
initialize with a particular size; | |
ExplicitBitVect (unsigned int size, bool bitsSet) | |
initialize with a particular size and all bits set | |
ExplicitBitVect (const ExplicitBitVect &other) | |
ExplicitBitVect (const std::string &pkl) | |
construct from a string pickle | |
ExplicitBitVect (const char *, const unsigned int) | |
construct from a text pickle | |
ExplicitBitVect (boost::dynamic_bitset<> *bits) | |
~ExplicitBitVect () override | |
ExplicitBitVect & | operator= (const ExplicitBitVect &other) |
bool | operator[] (const unsigned int which) const override |
bool | setBit (const unsigned int which) override |
sets a particular bit and returns its original value | |
bool | unsetBit (const unsigned int which) override |
unsets a particular bit and returns its original value | |
bool | getBit (const unsigned int which) const override |
returns the value of a particular bit | |
ExplicitBitVect | operator^ (const ExplicitBitVect &other) const |
ExplicitBitVect | operator& (const ExplicitBitVect &other) const |
ExplicitBitVect | operator| (const ExplicitBitVect &other) const |
ExplicitBitVect | operator~ () const |
ExplicitBitVect | operator+ (const ExplicitBitVect &other) const |
ExplicitBitVect & | operator^= (const ExplicitBitVect &other) |
ExplicitBitVect & | operator&= (const ExplicitBitVect &other) |
ExplicitBitVect & | operator|= (const ExplicitBitVect &other) |
ExplicitBitVect & | operator+= (const ExplicitBitVect &other) |
unsigned int | getNumBits () const override |
returns the number of bits (the length of the BitVect) | |
unsigned int | getNumOnBits () const override |
returns the number of on bits | |
unsigned int | getNumOffBits () const override |
returns the number of off bits | |
void | getOnBits (IntVect &v) const override |
replaces the contents of v with indices of our on bits | |
void | clearBits () override |
clears (sets to off) all of our bits | |
std::string | toString () const override |
returns a serialized (pickled) version of this BitVect | |
bool | operator== (const ExplicitBitVect &o) const |
bool | operator!= (const ExplicitBitVect &o) const |
Public Member Functions inherited from BitVect | |
virtual | ~BitVect ()=0 |
void | initFromText (const char *data, const unsigned int dataLen, bool isBase64=false, bool allowOldFormat=false) |
initializes this BitVect from a pickle | |
unsigned int | size () const |
Public Attributes | |
boost::dynamic_bitset * | dp_bits {nullptr} |
our raw storage | |
a class for bit vectors that are densely occupied
ExplicitBitVect objects store all of their bits using a boost::dynamic_bitset
These are very fast, but can require large amounts of memory for large, sparsely occupied vectors.
Definition at line 29 of file ExplicitBitVect.h.
|
inline |
Definition at line 31 of file ExplicitBitVect.h.
|
inlineexplicit |
initialize with a particular size;
Definition at line 33 of file ExplicitBitVect.h.
ExplicitBitVect::ExplicitBitVect | ( | unsigned int | size, |
bool | bitsSet | ||
) |
initialize with a particular size and all bits set
ExplicitBitVect::ExplicitBitVect | ( | const ExplicitBitVect & | other | ) |
ExplicitBitVect::ExplicitBitVect | ( | const std::string & | pkl | ) |
construct from a string pickle
ExplicitBitVect::ExplicitBitVect | ( | const char * | , |
const unsigned int | |||
) |
construct from a text pickle
|
inline |
construct directly from a dynamic_bitset pointer takes ownership of the pointer
Definition at line 46 of file ExplicitBitVect.h.
|
override |
|
inlineoverridevirtual |
clears (sets to off) all of our bits
Implements BitVect.
Definition at line 78 of file ExplicitBitVect.h.
|
overridevirtual |
returns the value of a particular bit
Implements BitVect.
|
overridevirtual |
|
overridevirtual |
returns the number of off bits
Implements BitVect.
|
overridevirtual |
returns the number of on bits
Implements BitVect.
|
overridevirtual |
replaces the contents of v
with indices of our on bits
Implements BitVect.
|
inline |
Definition at line 86 of file ExplicitBitVect.h.
References dp_bits.
ExplicitBitVect ExplicitBitVect::operator& | ( | const ExplicitBitVect & | other | ) | const |
ExplicitBitVect & ExplicitBitVect::operator&= | ( | const ExplicitBitVect & | other | ) |
ExplicitBitVect ExplicitBitVect::operator+ | ( | const ExplicitBitVect & | other | ) | const |
ExplicitBitVect & ExplicitBitVect::operator+= | ( | const ExplicitBitVect & | other | ) |
ExplicitBitVect & ExplicitBitVect::operator= | ( | const ExplicitBitVect & | other | ) |
|
inline |
Definition at line 83 of file ExplicitBitVect.h.
References dp_bits.
|
overridevirtual |
Implements BitVect.
ExplicitBitVect ExplicitBitVect::operator^ | ( | const ExplicitBitVect & | other | ) | const |
ExplicitBitVect & ExplicitBitVect::operator^= | ( | const ExplicitBitVect & | other | ) |
ExplicitBitVect ExplicitBitVect::operator| | ( | const ExplicitBitVect & | other | ) | const |
ExplicitBitVect & ExplicitBitVect::operator|= | ( | const ExplicitBitVect & | other | ) |
ExplicitBitVect ExplicitBitVect::operator~ | ( | ) | const |
|
overridevirtual |
sets a particular bit and returns its original value
Implements BitVect.
Referenced by RDInfoTheory::BitCorrMatGenerator::collectVotes().
|
overridevirtual |
|
overridevirtual |
unsets a particular bit and returns its original value
Implements BitVect.
boost::dynamic_bitset* ExplicitBitVect::dp_bits {nullptr} |
our raw storage
Definition at line 81 of file ExplicitBitVect.h.
Referenced by operator!=(), and operator==().