Package org.jamesii.core.util.graph

Examples of org.jamesii.core.util.graph.ISimpleGraph


   *         graph.
   */
  public int coarsenGraph() {
    aborter.putLevelInformation(0, getCoarseLevels().get(0));
    while (aborter.shouldContinue()) {
      ISimpleGraph next = nextCoarseningLevel();
      aborter.putLevelInformation(getActualLevel(), next);
    }
    return getActualLevel();
  }
View Full Code Here

TOP

Related Classes of org.jamesii.core.util.graph.ISimpleGraph

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.