harpoon.Util
Interface Grapher

All Known Subinterfaces:
InterferenceGraph
All Known Implementing Classes:
QuadInterferenceGraph

public interface Grapher

Grapher is an abstract interface for specifying the graph properties of data structures so that generic graph algorithms may be applied.

Version:
$Id: Grapher.java,v 1.2 2002/02/25 21:08:45 cananian Exp $
Author:
C. Scott Ananian <cananian@alumni.princeton.edu>

Method Summary
 boolean isEdge(Object from, Object to)
           
 Set predSet(Object node)
           
 Set succSet(Object node)
           
 

Method Detail

isEdge

public boolean isEdge(Object from,
                      Object to)

succSet

public Set succSet(Object node)

predSet

public Set predSet(Object node)