Skip to content
Snippets Groups Projects
ConnectionFunctionIdentity.cpp 289 B
Newer Older
  • Learn to ignore specific revisions
  • /**
     * 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);
    }