aboutsummaryrefslogtreecommitdiff
path: root/pmpd.c
diff options
context:
space:
mode:
authorCyrille Henry <nusmuk@users.sourceforge.net>2011-08-12 08:13:58 +0000
committerCyrille Henry <nusmuk@users.sourceforge.net>2011-08-12 08:13:58 +0000
commit3773bd350ff451b1626216bef01239f2a0ab1339 (patch)
tree7c5ce2b94e062afeb0d4c2bbaceba20ed1722117 /pmpd.c
parent42ace7dfbc5ed1e9c23ad1c8753192f86f841a70 (diff)
reduce max mass and link number
svn path=/trunk/externals/pmpd/; revision=15208
Diffstat (limited to 'pmpd.c')
-rw-r--r--pmpd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/pmpd.c b/pmpd.c
index 5fa3b2c..07b8c14 100644
--- a/pmpd.c
+++ b/pmpd.c
@@ -31,8 +31,8 @@
#include "stdio.h"
#include "math.h"
-#define nb_max_link 10000000
-#define nb_max_mass 1000000
+#define nb_max_link 100000
+#define nb_max_mass 100000
#define max(a,b) ( ((a) > (b)) ? (a) : (b) )
#define min(a,b) ( ((a) < (b)) ? (a) : (b) )