Lines Matching refs:EId
395 PBQPRAGraph::EdgeId EId = G.addEdge(NId, MId, std::move(M)); in createInterferenceEdge() local
396 C[K] = G.getEdgeCostsPtr(EId); in createInterferenceEdge()
451 PBQPRAGraph::EdgeId EId = G.findEdge(N1Id, N2Id); in apply() local
452 if (EId == G.invalidEdgeId()) { in apply()
458 if (G.getEdgeNode1Id(EId) == N2Id) { in apply()
462 PBQPRAGraph::RawMatrix Costs(G.getEdgeCosts(EId)); in apply()
464 G.updateEdgeCosts(EId, std::move(Costs)); in apply()
829 for (auto EId : edgeIds()) { in dump() local
830 NodeId N1Id = getEdgeNode1Id(EId); in dump()
831 NodeId N2Id = getEdgeNode2Id(EId); in dump()
833 const Matrix &M = getEdgeCosts(EId); in dump()
853 for (auto EId : edgeIds()) { in printDot() local
854 OS << " node" << getEdgeNode1Id(EId) in printDot()
855 << " -- node" << getEdgeNode2Id(EId) in printDot()
857 const Matrix &EdgeCosts = getEdgeCosts(EId); in printDot()