Package | Description |
---|---|
com.simiacryptus.text |
Modifier and Type | Class and Description |
---|---|
class |
CharTrieIndex
The type Char trie index.
|
Modifier and Type | Field and Description |
---|---|
protected CharTrie |
NodewalkerCodec.inner
The Inner.
|
protected CharTrie |
TrieNode.trie
The Trie.
|
Modifier and Type | Method and Description |
---|---|
CharTrie |
CharTrie.add(CharTrie z)
Add char trie.
|
CharTrie |
CharTrieIndex.addAlphabet(CharSequence document)
Add alphabet char trie.
|
CharTrie |
CharTrie.copy()
Copy char trie.
|
CharTrie |
ConvolutionalTrieSerializer.deserialize(byte[] bytes)
Deserialize char trie.
|
CharTrie |
CharTrieSerializer.deserialize(byte[] bytes)
Deserialize char trie.
|
CharTrie |
CharTrie.divide(CharTrie z,
int factor)
Divide char trie.
|
CharTrie |
LanguageModel.getTrie()
Gets trie.
|
CharTrie |
TrieNode.getTrie()
Gets trie.
|
static CharTrie |
CharTrieIndex.indexFulltext(Collection<CharSequence> documents,
int maxLevels,
int minWeight)
Index fulltext char trie.
|
static CharTrie |
CharTrieIndex.indexWords(Collection<CharSequence> documents,
int maxLevels,
int minWeight)
Index words char trie.
|
CharTrie |
CharTrie.product(CharTrie z)
Product char trie.
|
CharTrie |
CharTrie.reduce(CharTrie right,
BiFunction<TrieNode,TrieNode,TreeMap<Character,Long>> fn)
Reduce char trie.
|
CharTrie |
CharTrie.reduceSimple(CharTrie z,
BiFunction<Long,Long,Long> fn)
Reduce simple char trie.
|
CharTrie |
CharTrie.reverse()
Reverse char trie.
|
CharTrie |
CharTrie.rewrite(BiFunction<TrieNode,Map<Character,TrieNode>,TreeMap<Character,Long>> fn)
Rewrite char trie.
|
CharTrie |
CharTrieIndex.truncate()
Removes cursor data, retaining only the tree of tokens and counts.
|
protected CharTrie |
CharTrie.truncate()
Truncate char trie.
|
Modifier and Type | Method and Description |
---|---|
static BiFunction<CharTrie,CharTrie,CharTrie> |
CharTrie.reducer(BiFunction<TrieNode,TrieNode,TreeMap<Character,Long>> fn)
Reducer bi function.
|
static BiFunction<CharTrie,CharTrie,CharTrie> |
CharTrie.reducer(BiFunction<TrieNode,TrieNode,TreeMap<Character,Long>> fn)
Reducer bi function.
|
static BiFunction<CharTrie,CharTrie,CharTrie> |
CharTrie.reducer(BiFunction<TrieNode,TrieNode,TreeMap<Character,Long>> fn)
Reducer bi function.
|
Modifier and Type | Method and Description |
---|---|
CharTrie |
CharTrie.add(CharTrie z)
Add char trie.
|
CharTrie |
CharTrie.divide(CharTrie z,
int factor)
Divide char trie.
|
CharTrie |
CharTrie.product(CharTrie z)
Product char trie.
|
CharTrie |
CharTrie.reduce(CharTrie right,
BiFunction<TrieNode,TrieNode,TreeMap<Character,Long>> fn)
Reduce char trie.
|
CharTrie |
CharTrie.reduceSimple(CharTrie z,
BiFunction<Long,Long,Long> fn)
Reduce simple char trie.
|
byte[] |
ConvolutionalTrieSerializer.serialize(CharTrie charTrie)
Serialize byte [ ].
|
byte[] |
CharTrieSerializer.serialize(CharTrie charTrie)
Serialize byte [ ].
|
Constructor and Description |
---|
CharTrie(CharTrie charTrie)
Instantiates a new Char trie.
|
IndexNode(CharTrie trie,
int index)
Instantiates a new Index node.
|
IndexNode(CharTrie trie,
short depth,
int index,
TrieNode parent)
Instantiates a new Index node.
|
TrieNode(CharTrie trie,
int index)
Instantiates a new Trie node.
|
TrieNode(CharTrie trie,
int index,
TrieNode parent)
Instantiates a new Trie node.
|
Copyright © 2019 SimiaCryptus Software. All rights reserved.