Newer
Older

Michal Kravcenko
committed
/**
* DESCRIPTION OF THE FILE
*
* @author Michal Kravčenko
* @date 14.6.18 -
*/
#include "ConnectionWeightIdentity.h"
ConnectionWeightIdentity::ConnectionWeightIdentity() {
this->n_params = 1;
this->param_ptrs = new double*[1];
}
double ConnectionWeightIdentity::eval() {
return (*this->param_ptrs[0]);
}