From 575234bcbb3a09a81b325cbbecbda7f8a24b6ca4 Mon Sep 17 00:00:00 2001 From: sec Date: Sat, 29 Mar 1997 02:05:04 +0000 Subject: [PATCH] Adding some debugging stuff --- paradyn/src/PCthread/PCsearch.C | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/paradyn/src/PCthread/PCsearch.C b/paradyn/src/PCthread/PCsearch.C index 2836602..7d23d38 100644 --- a/paradyn/src/PCthread/PCsearch.C +++ b/paradyn/src/PCthread/PCsearch.C @@ -45,6 +45,9 @@ * class PCsearch * * $Log: PCsearch.C,v $ + * Revision 1.25 1997/03/29 02:05:04 sec + * Adding some debugging stuff + * * Revision 1.24 1997/03/16 23:17:46 lzheng * Changes made for the value of observed cost * @@ -174,7 +177,9 @@ PCsearch::expandSearch (sampleValue estimatedCost) curr = q->peek_first_data(); candidateCost = curr->getEstimatedCost(); #ifdef PCDEBUG - cout << " considering node with cost: " << candidateCost << endl; + cout << " considering node with cost: " << candidateCost + << " name = " << curr->getHypoName() << endl; +// cout << " considering node with cost: " << candidateCost << endl; #endif sampleValue predMax = performanceConsultant::predictedCostLimit; if (1/(1-candidateCost) > predMax) { -- 1.8.3.1