Skip to content
Snippets Groups Projects
Commit 0ffe1ff5 authored by Emmanuel Christophe's avatar Emmanuel Christophe
Browse files

BUG: protected contructor and destructor

parent 3be904ad
Branches
Tags
No related merge requests found
...@@ -45,14 +45,17 @@ public: ...@@ -45,14 +45,17 @@ public:
double operator() ( const svm_node * x, const svm_node * y, double operator() ( const svm_node * x, const svm_node * y,
const svm_parameter & param ) const; const svm_parameter & param ) const;
MixturePolyRBFKernelFunctor ();
virtual ~MixturePolyRBFKernelFunctor () { }
/** Specific implementation of \code Update \endcode to split m_MapParameters /** Specific implementation of \code Update \endcode to split m_MapParameters
* into specific variables to speed up kernel evaluations */ * into specific variables to speed up kernel evaluations */
void Update (); void Update ();
protected: protected:
MixturePolyRBFKernelFunctor ();
virtual ~MixturePolyRBFKernelFunctor () { };
double m_Mixture; double m_Mixture;
double m_GammaPoly; double m_GammaPoly;
double m_CoefPoly; double m_CoefPoly;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment