Package it.unimi.dsi.big.webgraph
Interface CompressionFlags
-
- All Known Implementing Classes:
BVGraph
public interface CompressionFlagsThis interface provides constants to be used as compression flags.
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String[]CODING_NAMEstatic intDELTAδ coding (seeOutputBitStream.writeDelta(int)).static intGAMMAγ coding (seeOutputBitStream.writeGamma(int)).static intGOLOMBGolomb coding (seeOutputBitStream.writeGolomb(int,int)).static intNIBBLEVariable-length nibble coding (seeOutputBitStream.writeNibble(int)).static intSKEWED_GOLOMBSkewed Golomb coding (seeOutputBitStream.writeSkewedGolomb(int,int)).static intUNARYUnary coding (seeOutputBitStream.writeUnary(int)).static intZETAζk coding (seeOutputBitStream.writeZeta(int,int)).
-
-
-
Field Detail
-
DELTA
static final int DELTA
δ coding (seeOutputBitStream.writeDelta(int)).- See Also:
- Constant Field Values
-
GAMMA
static final int GAMMA
γ coding (seeOutputBitStream.writeGamma(int)).- See Also:
- Constant Field Values
-
GOLOMB
static final int GOLOMB
Golomb coding (seeOutputBitStream.writeGolomb(int,int)).- See Also:
- Constant Field Values
-
SKEWED_GOLOMB
static final int SKEWED_GOLOMB
Skewed Golomb coding (seeOutputBitStream.writeSkewedGolomb(int,int)).- See Also:
- Constant Field Values
-
UNARY
static final int UNARY
Unary coding (seeOutputBitStream.writeUnary(int)).- See Also:
- Constant Field Values
-
ZETA
static final int ZETA
ζk coding (seeOutputBitStream.writeZeta(int,int)).- See Also:
- Constant Field Values
-
NIBBLE
static final int NIBBLE
Variable-length nibble coding (seeOutputBitStream.writeNibble(int)).- See Also:
- Constant Field Values
-
CODING_NAME
static final java.lang.String[] CODING_NAME
-
-