Merge from master

This commit is contained in:
Wilson Snyder
2018-06-14 19:04:36 -04:00
20 changed files with 59 additions and 43 deletions
+2 -2
View File
@@ -133,8 +133,8 @@ std::ostream& operator<<(std::ostream& os, V3GraphVertex* vertexp) {
void V3GraphEdge::init(V3Graph* graphp,
V3GraphVertex* fromp, V3GraphVertex* top, int weight,
bool cutable) {
UASSERT(fromp, "Null from pointer\n");
UASSERT(top, "Null to pointer\n");
UASSERT(fromp, "Null from pointer");
UASSERT(top, "Null to pointer");
m_fromp = fromp;
m_top = top;
m_weight = weight;