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
Fields Modifier and Type Field Description static java.lang.String[]
CODING_NAME
static int
DELTA
δ coding (seeOutputBitStream.writeDelta(int)
).static int
GAMMA
γ coding (seeOutputBitStream.writeGamma(int)
).static int
GOLOMB
Golomb coding (seeOutputBitStream.writeGolomb(int,int)
).static int
NIBBLE
Variable-length nibble coding (seeOutputBitStream.writeNibble(int)
).static int
SKEWED_GOLOMB
Skewed Golomb coding (seeOutputBitStream.writeSkewedGolomb(int,int)
).static int
UNARY
Unary coding (seeOutputBitStream.writeUnary(int)
).static int
ZETA
ζ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
-
-