MCPcopy Create free account
hub / github.com/LASzip/LASzip / ArithmeticModel

Method ArithmeticModel

src/arithmeticmodel.cpp:75–88  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

73#include <stdlib.h>
74
75ArithmeticModel::ArithmeticModel(U32 symbols, BOOL compress)
76{
77 this->symbols = symbols;
78 this->compress = compress;
79 distribution = 0;
80 decoder_table = 0;
81 last_symbol = 0;
82 symbols_until_update = 0;
83 symbol_count = 0;
84 table_shift = 0;
85 table_size = 0;
86 total_count = 0;
87 update_cycle = 0;
88}
89
90ArithmeticModel::~ArithmeticModel()
91{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected