Newer
Older

Michal Kravcenko
committed
/**
* DESCRIPTION OF THE FILE
*
* @author Michal Kravčenko
* @date 14.6.18 -
*/
#include "ConnectionWeightIdentity.h"
ConnectionWeightIdentity::ConnectionWeightIdentity(double * val) {
this->value = val;
}
double ConnectionWeightIdentity::eval() {
return (*this->value);
}