Skip to content
Snippets Groups Projects
Commit 55cc68a3 authored by Tiago de Freitas Pereira's avatar Tiago de Freitas Pereira
Browse files

Removed the forward method

parent 7c592684
No related branches found
Tags v3.0.5
No related merge requests found
...@@ -169,23 +169,6 @@ class Gaussian ...@@ -169,23 +169,6 @@ class Gaussian
*/ */
double logLikelihood_(const blitz::Array<double,1>& x) const; 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 * Saves to a Configuration
*/ */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment