Skip to content
Snippets Groups Projects
ConnectionWeightIdentity.cpp 325 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() {
        this->n_params = 1;
        this->param_ptrs = new double*[1];
    }
    
    double ConnectionWeightIdentity::eval() {
        return (*this->param_ptrs[0]);
    }