Graph.h | 59 Vector costs; member in class:PBQP::Graph::NodeEntry 63 NodeEntry() : costs(0, 0) {} 65 NodeEntry(const Vector &costs) : costs(costs), degree(0) {} 66 Vector& getCosts() { return costs; } 67 const Vector& getCosts() const { return costs; } 87 Matrix costs; member in class:PBQP::Graph::EdgeEntry 90 EdgeEntry() : costs(0, 0, 0) {} 92 EdgeEntry(NodeItr node1, NodeItr node2, const Matrix &costs) [all...] |