harpoon.Util
Interface Grapher<N>

All Known Subinterfaces:
InterferenceGraph
All Known Implementing Classes:
QuadInterferenceGraph

public interface Grapher<N>

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.3 2002/04/10 03:07:04 cananian Exp $
Author:
C. Scott Ananian <cananian@alumni.princeton.edu>

Method Summary
 boolean isEdge(N from, N to)
           
 Set<N> predSet(N node)
           
 Set<N> succSet(N node)
           
 

Method Detail

isEdge

boolean isEdge(N from,
               N to)

succSet

Set<N> succSet(N node)

predSet

Set<N> predSet(N node)