Package it.unimi.dsi.webgraph
Interface CompressionFlags
- All Known Implementing Classes:
BVGraph
public interface CompressionFlags
This interface provides constants to be used as compression flags.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final String[]static final intδ coding (seeOutputBitStream.writeDelta(int)).static final intγ coding (seeOutputBitStream.writeGamma(int)).static final intGolomb coding (seeOutputBitStream.writeGolomb(int,int)).static final intVariable-length nibble coding (seeOutputBitStream.writeNibble(int)).static final intSkewed Golomb coding (seeOutputBitStream.writeSkewedGolomb(int,int)).static final intUnary coding (seeOutputBitStream.writeUnary(int)).static final intζk coding (seeOutputBitStream.writeZeta(int,int)).
-
Field Details
-
DELTA
static final int DELTAδ coding (seeOutputBitStream.writeDelta(int)).- See Also:
-
GAMMA
static final int GAMMAγ coding (seeOutputBitStream.writeGamma(int)).- See Also:
-
GOLOMB
static final int GOLOMBGolomb coding (seeOutputBitStream.writeGolomb(int,int)).- See Also:
-
SKEWED_GOLOMB
static final int SKEWED_GOLOMBSkewed Golomb coding (seeOutputBitStream.writeSkewedGolomb(int,int)).- See Also:
-
UNARY
static final int UNARYUnary coding (seeOutputBitStream.writeUnary(int)).- See Also:
-
ZETA
static final int ZETAζk coding (seeOutputBitStream.writeZeta(int,int)).- See Also:
-
NIBBLE
static final int NIBBLEVariable-length nibble coding (seeOutputBitStream.writeNibble(int)).- See Also:
-
CODING_NAME
-