Browse Source

Increase the maximum vertex degree to 200. Closes #167.

Sascha Zelzer 13 years ago
parent
commit
eee8a55816
1 changed files with 1 additions and 1 deletions
  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