/**
 * 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);
}