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

gitdub at big.cc.gt.atl.ga.us gitdub at big.cc.gt.atl.ga.us
Thu Mar 5 22:10:53 EST 2015


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

On branch  : master
Link       : https://github.com/mlpack/mlpack/compare/904762495c039e345beba14c1142fd719b3bd50e...f94823c800ad6f7266995c700b1b630d5ffdcf40

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

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

    Minor capitalization fix for consistency.


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

a7ec74086490b143466a8b698bd44c054a9926c7
 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