浏览代码

Merge branch '167-dgraph-maxdegree-too-low'

* 167-dgraph-maxdegree-too-low:
  Increase the maximum vertex degree to 200. Closes #167.
Sascha Zelzer 13 年之前
父节点
当前提交
6925794b8e
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Libs/Core/ctkDependencyGraph.cpp

+ 1 - 1
Libs/Core/ctkDependencyGraph.cpp

@@ -33,7 +33,7 @@
 #include <cassert>
 
 #define MAXV 100
-#define MAXDEGREE 50
+#define MAXDEGREE 200
 
 //----------------------------------------------------------------------------
 class ctkDependencyGraphPrivate