MCPcopy Create free account
hub / github.com/catboost/catboost / TNode

Method TNode

library/cpp/containers/comptrie/node.cpp:9–18  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

7
8namespace NCompactTrie {
9 TNode::TNode()
10 : Offset(0)
11 , LeafLength(0)
12 , CoreLength(0)
13 , Label(0)
14 {
15 for (auto& offset : Offsets) {
16 offset = 0;
17 }
18 }
19
20 // We believe that epsilon links are found only on the forward-position and that afer jumping an epsilon link you come to an ordinary node.
21

Callers

nothing calls this directly

Calls 5

IsEpsilonLinkFunction · 0.85
LeftOffsetLenFunction · 0.85
UnpackOffsetFunction · 0.85
RightOffsetLenFunction · 0.85
SkipLeafMethod · 0.45

Tested by

no test coverage detected