Uses of Class
pt.tumba.ngram.svm.Cache.CacheNode

Packages that use Cache.CacheNode
pt.tumba.ngram.svm Implementation of Support Vector Machines classification and regression that can be used to categorize text files using N-Grams as features. 
 

Uses of Cache.CacheNode in pt.tumba.ngram.svm
 

Fields in pt.tumba.ngram.svm declared as Cache.CacheNode
private  Cache.CacheNode Cache.lru_head
          The first node in the LRU cache.
(package private)  Cache.CacheNode Cache.CacheNode.next
           
private  Cache.CacheNode[] Cache.nodes
          The Nodes in the cache.
(package private)  Cache.CacheNode Cache.CacheNode.prev
           
 

Methods in pt.tumba.ngram.svm with parameters of type Cache.CacheNode
private  void Cache.deleteLRU(Cache.CacheNode h)
          Delete a node from the cache.
private  void Cache.insertLRU(Cache.CacheNode h)
          Insert a node in the cache (at the last position).