From 2570492fa6f4cb20f820cd4093bb6b2b020bfc22 Mon Sep 17 00:00:00 2001 From: Duy-Nguyen Ta Date: Fri, 11 Oct 2013 21:58:09 +0000 Subject: [PATCH] disable printing --- gtsam_unstable/discrete/examples/schedulingExample.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/gtsam_unstable/discrete/examples/schedulingExample.cpp b/gtsam_unstable/discrete/examples/schedulingExample.cpp index 3de997b0f..260209e29 100644 --- a/gtsam_unstable/discrete/examples/schedulingExample.cpp +++ b/gtsam_unstable/discrete/examples/schedulingExample.cpp @@ -167,8 +167,6 @@ void solveStaged(size_t addMutex = 2) { gttoc_(eliminate); // find root node - chordal->back()->print("back: "); - chordal->front()->print("front: "); DiscreteConditional::shared_ptr root = chordal->back(); if (debug) root->print(""/*scheduler.studentName(s)*/); @@ -334,8 +332,6 @@ void accomodateStudent() { // get corresponding count DiscreteKey dkey = scheduler.studentKey(0); values[dkey.first] = bestSlot; - values.print("Values: "); - root->print("Root: "); size_t count = (*root)(values); cout << boost::format("%s = %d (%d), count = %d") % scheduler.studentName(0) % scheduler.slotName(bestSlot) % bestSlot % count << endl;