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 {