HomeSort by relevance Sort by last modified time
    Searched refs:GW (Results 1 - 8 of 8) sorted by null

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/networkx/tests/
test_convert.py 29 GW=to_networkx_graph(dod)
30 assert_equal(sorted(G.nodes()), sorted(GW.nodes()))
31 assert_equal(sorted(G.edges()), sorted(GW.edges()))
54 GW=to_networkx_graph(dod)
55 assert_equal(sorted(G.nodes()), sorted(GW.nodes()))
56 assert_equal(sorted(G.edges()), sorted(GW.edges()))
66 GW=to_networkx_graph(dod, create_using=DiGraph())
67 assert_equal(sorted(G.nodes()), sorted(GW.nodes()))
68 assert_equal(sorted(G.edges()), sorted(GW.edges()))
87 GW=to_networkx_graph(dod,create_using=Graph()
    [all...]
test_convert_numpy.py 43 GW = nx.to_networkx_graph(A, create_using=create_using)
44 self.assert_equal(G, GW)
test_convert_scipy.py 44 GW = nx.to_networkx_graph(A, create_using=create_using)
45 self.assert_equal(G, GW)
  /external/llvm/lib/Analysis/
RegionPrinter.cpp 103 GraphWriter<RegionInfoPass*> &GW,
105 raw_ostream &O = GW.getOStream();
122 printRegionCluster(**RI, GW, depth + 1);
136 GraphWriter<RegionInfoPass*> &GW) {
138 raw_ostream &O = GW.getOStream();
140 printRegionCluster(*RI.getTopLevelRegion(), GW, 4);
  /external/llvm/lib/CodeGen/
ScheduleDAGPrinter.cpp 71 GraphWriter<ScheduleDAG*> &GW) {
72 return G->addCustomGraphFeatures(GW);
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGPrinter.cpp 128 GraphWriter<SelectionDAG*> &GW) {
129 GW.emitSimpleNode(nullptr, "plaintext=circle", "GraphRoot");
131 GW.emitEdge(nullptr, -1, G->getRoot().getNode(), G->getRoot().getResNo(),
291 void ScheduleDAGSDNodes::getCustomGraphFeatures(GraphWriter<ScheduleDAG*> &GW) const {
294 GW.emitSimpleNode(nullptr, "plaintext=circle", "GraphRoot");
297 GW.emitEdge(nullptr, -1, &SUnits[N->getNodeId()], -1,
ScheduleDAGSDNodes.h 128 virtual void getCustomGraphFeatures(GraphWriter<ScheduleDAG*> &GW) const;
  /external/openfst/src/include/fst/
arc-map.h 772 typedef typename GallicArc<A, S>::Weight GW;
777 return ToArc(0, 0, GW(SW::One(), arc.weight), kNoStateId);
780 return ToArc(0, 0, GW(SW::Zero(), arc.weight), kNoStateId);
784 GW(SW::One(), arc.weight), arc.nextstate);
788 GW(SW(arc.olabel), arc.weight), arc.nextstate);
812 typedef typename GallicArc<A, S>::Weight GW;
819 if (arc.nextstate == kNoStateId && arc.weight == GW::Zero())
870 typedef typename GallicArc<A, S>::Weight GW;
891 if (arc.nextstate == kNoStateId && arc.weight == GW::Zero())
    [all...]

Completed in 211 milliseconds