From fbbc133a81bc07eb58f107fa543cb7e3c8de42b2 Mon Sep 17 00:00:00 2001 From: Ryan Curtin Date: Fri, 4 Oct 2013 04:33:03 +0000 Subject: [PATCH] Add a note that this does not work. --- src/mlpack/methods/mvu/mvu.cpp | 2 ++ src/mlpack/methods/mvu/mvu.hpp | 2 ++ src/mlpack/methods/mvu/mvu_main.cpp | 2 ++ 3 files changed, 6 insertions(+) diff --git a/src/mlpack/methods/mvu/mvu.cpp b/src/mlpack/methods/mvu/mvu.cpp index a5b7a06ff8..908f42cd06 100644 --- a/src/mlpack/methods/mvu/mvu.cpp +++ b/src/mlpack/methods/mvu/mvu.cpp @@ -3,6 +3,8 @@ * @author Ryan Curtin * * Implementation of the MVU class and its auxiliary objective function class. + * + * Note: this implementation of MVU does not work. See #189. */ #include "mvu.hpp" diff --git a/src/mlpack/methods/mvu/mvu.hpp b/src/mlpack/methods/mvu/mvu.hpp index a48921d325..0c278ba917 100644 --- a/src/mlpack/methods/mvu/mvu.hpp +++ b/src/mlpack/methods/mvu/mvu.hpp @@ -6,6 +6,8 @@ * class as well as a class representing the objective function (a semidefinite * program) which MVU seeks to minimize. Minimization is performed by the * Augmented Lagrangian optimizer (which in turn uses the L-BFGS optimizer). + * + * Note: this implementation of MVU does not work. See #189. */ #ifndef __MLPACK_METHODS_MVU_MVU_HPP #define __MLPACK_METHODS_MVU_MVU_HPP diff --git a/src/mlpack/methods/mvu/mvu_main.cpp b/src/mlpack/methods/mvu/mvu_main.cpp index 7da6b41435..1cff076003 100644 --- a/src/mlpack/methods/mvu/mvu_main.cpp +++ b/src/mlpack/methods/mvu/mvu_main.cpp @@ -3,6 +3,8 @@ * @author Ryan Curtin * * Executable for MVU. + * + * Note: this implementation of MVU does not work. See #189. */ #include #include "mvu.hpp"