Lines Matching refs:EId
402 PBQPRAGraph::EdgeId EId = G.addEdge(NId, MId, std::move(M)); in createInterferenceEdge() local
403 C[K] = G.getEdgeCostsPtr(EId); in createInterferenceEdge()
458 PBQPRAGraph::EdgeId EId = G.findEdge(N1Id, N2Id); in apply() local
459 if (EId == G.invalidEdgeId()) { in apply()
465 if (G.getEdgeNode1Id(EId) == N2Id) { in apply()
469 PBQPRAGraph::RawMatrix Costs(G.getEdgeCosts(EId)); in apply()
471 G.updateEdgeCosts(EId, std::move(Costs)); in apply()
848 for (auto EId : edgeIds()) { in dump() local
849 NodeId N1Id = getEdgeNode1Id(EId); in dump()
850 NodeId N2Id = getEdgeNode2Id(EId); in dump()
852 const Matrix &M = getEdgeCosts(EId); in dump()
872 for (auto EId : edgeIds()) { in printDot() local
873 OS << " node" << getEdgeNode1Id(EId) in printDot()
874 << " -- node" << getEdgeNode2Id(EId) in printDot()
876 const Matrix &EdgeCosts = getEdgeCosts(EId); in printDot()