1#ifndef __COMPRESSION_ARIPRICE_H 2#define __COMPRESSION_ARIPRICE_H 3 4namespace NCompression { 5namespace NArithmetic { 6 7const UINT32 kNumBitPriceShiftBits = 6; 8const UINT32 kBitPrice = 1 << kNumBitPriceShiftBits; 9 10}} 11 12#endif 13 14