Package com.opengamma.engine.depgraph

Examples of com.opengamma.engine.depgraph.DependencyGraph


    graph.addDependencyNode(createDependencyNode(null, null));
    return graph;
  }

  private DependencyGraph graphOneEndTime(final Instant end) {
    final DependencyGraph graph = new DependencyGraph("one end");
    graph.addDependencyNode(createDependencyNode(null, null));
    graph.addDependencyNode(createDependencyNode(null, end));
    return graph;
  }
View Full Code Here


    graph.addDependencyNode(createDependencyNode(null, end));
    return graph;
  }

  private DependencyGraph graphTwoEndTimes(final Instant end1, final Instant end2) {
    final DependencyGraph graph = new DependencyGraph("two ends");
    graph.addDependencyNode(createDependencyNode(null, null));
    graph.addDependencyNode(createDependencyNode(null, end1));
    graph.addDependencyNode(createDependencyNode(null, end2));
    return graph;
  }
View Full Code Here

    graph.addDependencyNode(createDependencyNode(null, end2));
    return graph;
  }

  private DependencyGraph graphOneStartTime(final Instant start) {
    final DependencyGraph graph = new DependencyGraph("one start");
    graph.addDependencyNode(createDependencyNode(null, null));
    graph.addDependencyNode(createDependencyNode(start, null));
    return graph;
  }
View Full Code Here

    graph.addDependencyNode(createDependencyNode(start, null));
    return graph;
  }

  private DependencyGraph graphTwoStartTimes(final Instant start1, final Instant start2) {
    final DependencyGraph graph = new DependencyGraph("two starts");
    graph.addDependencyNode(createDependencyNode(null, null));
    graph.addDependencyNode(createDependencyNode(start1, null));
    graph.addDependencyNode(createDependencyNode(start2, null));
    return graph;
  }
View Full Code Here

TOP

Related Classes of com.opengamma.engine.depgraph.DependencyGraph

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.