Lines Matching refs:EId
394 PBQPRAGraph::EdgeId EId = G.addEdge(NId, MId, std::move(M)); in createInterferenceEdge() local
395 C[K] = G.getEdgeCostsPtr(EId); in createInterferenceEdge()
450 PBQPRAGraph::EdgeId EId = G.findEdge(N1Id, N2Id); in apply() local
451 if (EId == G.invalidEdgeId()) { in apply()
457 if (G.getEdgeNode1Id(EId) == N2Id) { in apply()
461 PBQPRAGraph::RawMatrix Costs(G.getEdgeCosts(EId)); in apply()
463 G.updateEdgeCosts(EId, std::move(Costs)); in apply()
844 for (auto EId : edgeIds()) { in dump() local
845 NodeId N1Id = getEdgeNode1Id(EId); in dump()
846 NodeId N2Id = getEdgeNode2Id(EId); in dump()
848 const Matrix &M = getEdgeCosts(EId); in dump()
868 for (auto EId : edgeIds()) { in printDot() local
869 OS << " node" << getEdgeNode1Id(EId) in printDot()
870 << " -- node" << getEdgeNode2Id(EId) in printDot()
872 const Matrix &EdgeCosts = getEdgeCosts(EId); in printDot()