From 55cc68a31a00da5951bfb03b56f1256d343609f2 Mon Sep 17 00:00:00 2001
From: Tiago Freitas Pereira <tiagofrepereira@gmail.com>
Date: Thu, 11 Dec 2014 16:49:16 +0100
Subject: [PATCH] Removed the forward method

---
 .../misc/include/bob.learn.misc/Gaussian.h      | 17 -----------------
 1 file changed, 17 deletions(-)

diff --git a/bob/learn/misc/include/bob.learn.misc/Gaussian.h b/bob/learn/misc/include/bob.learn.misc/Gaussian.h
index d9b1e54..acb08fc 100644
--- a/bob/learn/misc/include/bob.learn.misc/Gaussian.h
+++ b/bob/learn/misc/include/bob.learn.misc/Gaussian.h
@@ -169,23 +169,6 @@ class Gaussian
      */
     double logLikelihood_(const blitz::Array<double,1>& x) const;
 
-    /**
-     * Computes the log likelihood of the sample, x
-     * @param x The data sample (feature vector)
-     * @param output The computed log likelihood
-     */
-    void forward(const blitz::Array<double,1>& x, double& output) const
-    { output = logLikelihood(x); }
-
-    /**
-     * Computes the log likelihood of the sample, x
-     * @param x The data sample (feature vector)
-     * @param output The computed log likelihood
-     * @warning The input is NOT checked
-     */
-    void forward_(const blitz::Array<double,1>& x, double& output) const
-    { output = logLikelihood_(x); }
-
     /**
      * Saves to a Configuration
      */
-- 
GitLab