From 7af90b0f3e6909aed02234e978065a4cbb9d2ccf Mon Sep 17 00:00:00 2001 From: Dongryeol Lee Date: Sat, 15 Jan 2011 03:29:03 +0000 Subject: [PATCH] Took out prints. --- .../thesis_research/core/optimization/trust_region_dev.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/fastlib/trunk/contrib/dongryel/thesis_research/core/optimization/trust_region_dev.h b/fastlib/trunk/contrib/dongryel/thesis_research/core/optimization/trust_region_dev.h index 5af05feff3..d883956b82 100644 --- a/fastlib/trunk/contrib/dongryel/thesis_research/core/optimization/trust_region_dev.h +++ b/fastlib/trunk/contrib/dongryel/thesis_research/core/optimization/trust_region_dev.h @@ -179,10 +179,6 @@ void TrustRegionUtil::ComputeDoglegDirection( // If the Hessian matrix is not positive-definite (up to small // epsilon tolerance), we have to use the Cauchy Point method. if(! hessian_is_positive_definite) { - - std::cerr << "The Hessian matrix is not positive-definite, so we " - "have to use the Cauchy Point method..." << std::endl; - ComputeCauchyPoint(radius, gradient, hessian, p); } // end of the Cauchy Point case. else {