Package cascading.flow.planner.iso.subgraph.partitioner

Examples of cascading.flow.planner.iso.subgraph.partitioner.ExpressionGraphPartitioner


    {
    }

  protected ExpressionGraphPartitioner createExpressionGraphPartitioner( ExpressionGraph contractionGraph, ExpressionGraph expressionGraph, ElementAnnotation[] annotations )
    {
    return new ExpressionGraphPartitioner( contractionGraph, expressionGraph, annotations );
    }
View Full Code Here


    int count = 0;
    beginGraph.writeDOT( new File( path, makeFileName( count++, "element-graph" ) ).toString() );

    if( graphPartitioner instanceof ExpressionGraphPartitioner )
      {
      ExpressionGraphPartitioner expressionGraphPartitioner = (ExpressionGraphPartitioner) graphPartitioner;

      if( expressionGraphPartitioner.getContractionGraph() != null )
        expressionGraphPartitioner.getContractionGraph().writeDOT( new File( path, makeFileName( count++, "contraction-graph" ) ).toString() );

      if( expressionGraphPartitioner.getExpressionGraph() != null )
        expressionGraphPartitioner.getExpressionGraph().writeDOT( new File( path, makeFileName( count++, "expression-graph" ) ).toString() );
      }

    if( contractedGraph != null )
      contractedGraph.writeDOT( new File( path, makeFileName( count++, "contracted-graph" ) ).toString() );
View Full Code Here

TOP

Related Classes of cascading.flow.planner.iso.subgraph.partitioner.ExpressionGraphPartitioner

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.