#include "MSTCache.h"
Go to the source code of this file.
Classes | |
class | MSTMultiListCache |
A cache that uses multiple lists to maintain similarity/distance metrics to build a Minimum Spanning Tree (MST). More... | |
Typedefs | |
typedef std::pair< int, SMList > | MSTCacheEntry |
Shortcut typedef for std::pair<int, SMList>. |
std::pair< int, SMList > MSTCacheEntry |
Shortcut typedef for std::pair<int, SMList>.
This typedef is a shortcut for a cache entry that contains the following pair of information:
The first entry is an int
that indicates the EST index with which this cache entry is associated.
The second entry is a SMList
that contains the closet (most similar) ESTs for the EST indicated by the first entry.
Definition at line 56 of file MSTMultiListCache.h.