Package it.unimi.dsi.big.webgraph
Interface CompressionFlags
- All Known Implementing Classes:
BVGraph
public interface CompressionFlags
This interface provides constants to be used as compression flags.
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String[]
static final int
δ coding (seeOutputBitStream.writeDelta(int)
).static final int
γ coding (seeOutputBitStream.writeGamma(int)
).static final int
Golomb coding (seeOutputBitStream.writeGolomb(int,int)
).static final int
Variable-length nibble coding (seeOutputBitStream.writeNibble(int)
).static final int
Skewed Golomb coding (seeOutputBitStream.writeSkewedGolomb(int,int)
).static final int
Unary 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
-