From a18ed8730a0bf9cf49db1869bb82b274969adebe Mon Sep 17 00:00:00 2001
From: Miha <mihaf@hapi.(none)>
Date: Wed, 12 Feb 2014 15:11:31 +0000
Subject: [PATCH] Bug if(cell_occupation>1) in cell.c found and removed! Hura!!!!

---
 src/cell.c |    2 +-
 src/tape   |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/cell.c b/src/cell.c
index 246866b..97f2fe7 100644
--- a/src/cell.c
+++ b/src/cell.c
@@ -147,7 +147,7 @@
                 }
 // Now we check whether we didn't come close to some other vertices in the same
 // cell!
-                if(cell_occupation>1){
+                if(cell_occupation>0){
                     for(l=0;l<cell_occupation;l++){
 
 				//carefull with this checks!
diff --git a/src/tape b/src/tape
index 02c85b8..b4774b5 100644
--- a/src/tape
+++ b/src/tape
@@ -1,6 +1,6 @@
 ####### Vesicle definitions ###########
 # nshell is a number of divisions of dipyramid
-nshell=17
+nshell=10
 # dmax is the max. bond length 
 dmax=1.7
 # bending rigidity of the membrane 

--
Gitblit v1.9.3