From dcd35081a6f08c911169aca6913fd71b88531b97 Mon Sep 17 00:00:00 2001
From: Samo Penic <samo.penic@gmail.com>
Date: Thu, 12 Jul 2012 16:14:11 +0000
Subject: [PATCH] Is it worth it? I've changed dynamically alocated space to statically alocated one and gained some little time

---
 src/main.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/main.c b/src/main.c
index 758bbfa..d84b611 100644
--- a/src/main.c
+++ b/src/main.c
@@ -30,10 +30,10 @@
 retval=vtx_add_cneighbour(blist,vlist->vtx[1],vlist->vtx[0]);
 if(retval==TS_FAIL) printf("1. already a member or vertex is null!\n");
 
-retval=vtx_add_cneighbour(blist,vlist->vtx[0],vlist->vtx[1]);
+retval=vtx_add_neighbour(vlist->vtx[0],vlist->vtx[1]);
 if(retval==TS_FAIL) printf("2. already a member or vertex is null!\n");
 fprintf(stderr,"Was here");
-retval=vtx_remove_neighbour(vlist->vtx[0],vlist->vtx[1]);
+retval=vtx_remove_neighbour(vlist->vtx[1],vlist->vtx[0]);
 vtx_add_neighbour(vlist->vtx[0],vlist->vtx[1]);
 fprintf(stderr,"Was here too!\n");
 
@@ -73,7 +73,7 @@
 
 centermass(vesicle);
 cell_occupation(vesicle);
-for(i=0;i<10000;i++){
+for(i=0;i<100;i++){
 single_timestep(vesicle);
 if(i%100==0){
 write_vertex_xml_file(vesicle,i/100);

--
Gitblit v1.9.3