From 201b16dabe068372adfc1d5f39436fca2d42a49a Mon Sep 17 00:00:00 2001 From: Alex Cunningham Date: Fri, 29 Oct 2010 15:00:57 +0000 Subject: [PATCH] Added more print statements for timing --- tests/timeLinearOnDataset.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/timeLinearOnDataset.cpp b/tests/timeLinearOnDataset.cpp index f9e9ebc33..82a7a08dc 100644 --- a/tests/timeLinearOnDataset.cpp +++ b/tests/timeLinearOnDataset.cpp @@ -38,10 +38,12 @@ int main(int argc, char *argv[]) { tic_("Z 1 order"); Ordering::shared_ptr ordering(data.first->orderingCOLAMD(*data.second)); toc_("Z 1 order"); + tictoc_print_(); tic_("Z 2 linearize"); GaussianFactorGraph::shared_ptr gfg(data.first->linearize(*data.second, *ordering)); toc_("Z 2 linearize"); + tictoc_print_(); for(size_t trial = 0; trial < 100; ++trial) {