From 33843c0b92daf75ee5f817f6e0b6a29ff5ff7d11 Mon Sep 17 00:00:00 2001 From: "lperron@google.com" Date: Thu, 31 Mar 2011 13:21:32 +0000 Subject: [PATCH] misc renaming --- linear_solver/cbc_interface.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/linear_solver/cbc_interface.cc b/linear_solver/cbc_interface.cc index 29a4f81634..eb2386d132 100644 --- a/linear_solver/cbc_interface.cc +++ b/linear_solver/cbc_interface.cc @@ -144,7 +144,7 @@ class CBCInterface : public MPSolverInterface { } private: // Reset best objective bound to +/- infinity depending on the - // objective sense. + // optimization direction. void ResetBestObjectiveBound(); // Set all parameters in the underlying solver. @@ -347,8 +347,8 @@ MPSolver::ResultStatus CBCInterface::Solve(const MPSolverParameters& param) { } } - // Changing objective sense through OSI so that the model file - // (written through OSI) has the correct objective sense + // Changing optimization direction through OSI so that the model file + // (written through OSI) has the correct optimization duration. osi_.setObjSense(maximize_ ? -1 : 1); VLOG(1) << StringPrintf("Model built in %.3f seconds.", timer.Get());