helix.graph.algo.c3part.preprocessor
Class EpsilonCloser

java.lang.Object
  extended by helix.graph.algo.c3part.preprocessor.GraphPreprocessor
      extended by helix.graph.algo.c3part.preprocessor.GraphCloser
          extended by helix.graph.algo.c3part.preprocessor.EpsilonCloser

public class EpsilonCloser
extends GraphCloser

a class to compute delta closure on the epsilon (correspondance) relation in datagraphs.
note: to close on other (non zero color) relations, use the DataGraphCloser class instead.


Constructor Summary
EpsilonCloser(int delta)
          close on color 0 (epsilon) with delta.
 
Method Summary
 void run(Graph graph)
          implement our run() operation
 
Methods inherited from class helix.graph.algo.c3part.preprocessor.GraphCloser
logParams, makeDeltaList
 
Methods inherited from class helix.graph.algo.c3part.preprocessor.GraphPreprocessor
run
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

EpsilonCloser

public EpsilonCloser(int delta)
close on color 0 (epsilon) with delta. delta < 0 => full transitive closure

Method Detail

run

public void run(Graph graph)
implement our run() operation

Specified by:
run in class GraphPreprocessor