From a2db521649cdcdfef3bdf6b306e05228a01498c0 Mon Sep 17 00:00:00 2001 From: Samo Penic <samo.penic@gmail.com> Date: Sat, 07 Dec 2013 09:45:07 +0000 Subject: [PATCH] Added poly information to tape& parsing function. Also, poly_list is freed in vesicle_free --- src/main.c | 8 ++++++++ 1 files changed, 8 insertions(+), 0 deletions(-) diff --git a/src/main.c b/src/main.c index 7e12c1c..53f4b0e 100644 --- a/src/main.c +++ b/src/main.c @@ -10,6 +10,7 @@ #include "initial_distribution.h" #include "frame.h" #include "timestep.h" +#include "poly.h" /** Entrance function to the program * @param argv is a number of parameters used in program call (including the program name @@ -64,6 +65,13 @@ printf("Tests complete.\n"); */ vesicle=parsetape(&mcsweeps, &inititer, &iterations); + +/*Testing */ +//vesicle->poly_list=init_poly_list(1400,20,vesicle->vlist); + +//poly_list_free(vesicle->poly_list); +/*End testing*/ + run_simulation(vesicle, mcsweeps, inititer, iterations); write_master_xml_file("test.pvd"); -- Gitblit v1.9.3