Tabnine Logo
BulkIterationNode.addClosedBranches
Code IndexAdd Tabnine to your IDE (free)

How to use
addClosedBranches
method
in
org.apache.flink.optimizer.dag.BulkIterationNode

Best Java code snippets using org.apache.flink.optimizer.dag.BulkIterationNode.addClosedBranches (Showing top 5 results out of 315)

origin: apache/flink

@Override
public void computeUnclosedBranchStack() {
  if (this.openBranches != null) {
    return;
  }
  // the resulting branches are those of the step function
  // because the BulkPartialSolution takes the input's branches
  addClosedBranches(getSingleRootOfStepFunction().closedBranchingNodes);
  List<UnclosedBranchDescriptor> result = getSingleRootOfStepFunction().openBranches;
  this.openBranches = (result == null || result.isEmpty()) ? Collections.<UnclosedBranchDescriptor>emptyList() : result;
}
origin: com.alibaba.blink/flink-optimizer

@Override
public void computeUnclosedBranchStack() {
  if (this.openBranches != null) {
    return;
  }
  // the resulting branches are those of the step function
  // because the BulkPartialSolution takes the input's branches
  addClosedBranches(getSingleRootOfStepFunction().closedBranchingNodes);
  List<UnclosedBranchDescriptor> result = getSingleRootOfStepFunction().openBranches;
  this.openBranches = (result == null || result.isEmpty()) ? Collections.<UnclosedBranchDescriptor>emptyList() : result;
}
origin: org.apache.flink/flink-optimizer

@Override
public void computeUnclosedBranchStack() {
  if (this.openBranches != null) {
    return;
  }
  // the resulting branches are those of the step function
  // because the BulkPartialSolution takes the input's branches
  addClosedBranches(getSingleRootOfStepFunction().closedBranchingNodes);
  List<UnclosedBranchDescriptor> result = getSingleRootOfStepFunction().openBranches;
  this.openBranches = (result == null || result.isEmpty()) ? Collections.<UnclosedBranchDescriptor>emptyList() : result;
}
origin: org.apache.flink/flink-optimizer_2.11

@Override
public void computeUnclosedBranchStack() {
  if (this.openBranches != null) {
    return;
  }
  // the resulting branches are those of the step function
  // because the BulkPartialSolution takes the input's branches
  addClosedBranches(getSingleRootOfStepFunction().closedBranchingNodes);
  List<UnclosedBranchDescriptor> result = getSingleRootOfStepFunction().openBranches;
  this.openBranches = (result == null || result.isEmpty()) ? Collections.<UnclosedBranchDescriptor>emptyList() : result;
}
origin: org.apache.flink/flink-optimizer_2.10

@Override
public void computeUnclosedBranchStack() {
  if (this.openBranches != null) {
    return;
  }
  // the resulting branches are those of the step function
  // because the BulkPartialSolution takes the input's branches
  addClosedBranches(getSingleRootOfStepFunction().closedBranchingNodes);
  List<UnclosedBranchDescriptor> result = getSingleRootOfStepFunction().openBranches;
  this.openBranches = (result == null || result.isEmpty()) ? Collections.<UnclosedBranchDescriptor>emptyList() : result;
}
org.apache.flink.optimizer.dagBulkIterationNodeaddClosedBranches

Popular methods of BulkIterationNode

  • <init>
    Creates a new node for the bulk iteration.
  • acceptForStepFunction
  • getCostWeight
  • getIncomingConnection
  • getInterestingProperties
  • getIterationContract
  • getNextPartialSolution
    Gets the nextPartialSolution from this BulkIterationNode.
  • getOperator
  • getParallelism
  • getPartialSolution
    Gets the partialSolution from this BulkIterationNode.
  • getPredecessorNode
  • getSingleRootOfStepFunction
  • getPredecessorNode,
  • getSingleRootOfStepFunction,
  • setNextPartialSolution,
  • setPartialSolution

Popular in Java

  • Making http post requests using okhttp
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • getExternalFilesDir (Context)
  • getSharedPreferences (Context)
  • MessageDigest (java.security)
    Uses a one-way hash function to turn an arbitrary number of bytes into a fixed-length byte sequence.
  • Properties (java.util)
    A Properties object is a Hashtable where the keys and values must be Strings. Each property can have
  • ExecutorService (java.util.concurrent)
    An Executor that provides methods to manage termination and methods that can produce a Future for tr
  • Modifier (javassist)
    The Modifier class provides static methods and constants to decode class and member access modifiers
  • Servlet (javax.servlet)
    Defines methods that all servlets must implement. A servlet is a small Java program that runs within
  • Response (javax.ws.rs.core)
    Defines the contract between a returned instance and the runtime when an application needs to provid
  • Best IntelliJ plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now