[mlpack-git] master: Minor capitalization fix for consistency. (790666f)

gitdub at big.cc.gt.atl.ga.us gitdub at big.cc.gt.atl.ga.us
Tue Jan 6 16:21:33 EST 2015


Repository : https://github.com/mlpack/mlpack

On branch  : master
Link       : https://github.com/mlpack/mlpack/compare/7f1ac617dd14ce526aa3476e0a001a72e2ce37a9...65bd0550f4ab82a07183603e1a2e9fa7f2bb43d7

>---------------------------------------------------------------

commit 790666fe09911014266015838060f37d0ebe513c
Author: ryan <ryan at ratml.org>
Date:   Tue Jan 6 16:19:33 2015 -0500

    Minor capitalization fix for consistency.


>---------------------------------------------------------------

790666fe09911014266015838060f37d0ebe513c
 src/mlpack/tests/lrsdp_test.cpp | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/mlpack/tests/lrsdp_test.cpp b/src/mlpack/tests/lrsdp_test.cpp
index 4e4b473..aa27c84 100644
--- a/src/mlpack/tests/lrsdp_test.cpp
+++ b/src/mlpack/tests/lrsdp_test.cpp
@@ -51,7 +51,7 @@ void CreateLovaszThetaInitialPoint(const arma::mat& edges,
  * is all that is necessary to set up the problem.  A matrix which will contain
  * initial point coordinates should be given also.
  */
-void setupLovaszTheta(const arma::mat& edges,
+void SetupLovaszTheta(const arma::mat& edges,
                       LRSDP& lovasz)
 {
   // Get the number of vertices in the problem.
@@ -99,7 +99,7 @@ BOOST_AUTO_TEST_CASE(Johnson844LovaszThetaSDP)
 
   LRSDP lovasz(edges.n_cols + 1, 0, coordinates);
 
-  setupLovaszTheta(edges, lovasz);
+  SetupLovaszTheta(edges, lovasz);
 
   double finalValue = lovasz.Optimize(coordinates);
 
@@ -290,7 +290,7 @@ BOOST_AUTO_TEST_CASE(Keller4LovaszThetaSDP)
 
   LRSDP lovasz(edges.n_cols, coordinates);
 
-  setupLovaszTheta(edges, lovasz);
+  SetupLovaszTheta(edges, lovasz);
 
   double finalValue = lovasz.Optimize(coordinates);
 



More information about the mlpack-git mailing list