From 1980985894945d600ec28f07983271ed5e58dd0c Mon Sep 17 00:00:00 2001 From: pranathivemuri Date: Fri, 11 Mar 2016 14:14:24 -0600 Subject: [PATCH] prints out average lengths and torutoisity in the networks --- main.cpp | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/main.cpp b/main.cpp index d489016..1e8293a 100644 --- a/main.cpp +++ b/main.cpp @@ -249,7 +249,15 @@ int main(int argc, char* argv[]) num_nets = 2; //set the number of networks to two float sigma = args["sigma"].as_float(); //get the sigma value from the user T.load_obj(args.arg(1)); //load the second (test) network - + double avgL, avgT; + avgL = GT.Lengths(); + avgT = GT.Tortuosities(); + std::cout<