aima.search.framework
Interface NodeStore

All Known Implementing Classes:
CachedStateNodeStore, FIFONodeStore, LIFONodeStore, PriorityNodeStore

public interface NodeStore


Method Summary
 void add(java.util.List<Node> nodes)
           
 void add(Node anItem)
           
 boolean isEmpty()
           
 Node remove()
           
 int size()
           
 

Method Detail

add

void add(Node anItem)

remove

Node remove()

add

void add(java.util.List<Node> nodes)

isEmpty

boolean isEmpty()

size

int size()