All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.chen0040.mlp.functions.AbstractTransferFunction Maven / Gradle / Ivy

There is a newer version: 1.0.6
Show newest version
package com.github.chen0040.mlp.functions;

import sun.reflect.generics.reflectiveObjects.NotImplementedException;


/**
 * Created by xschen on 5/9/15.
 */
public abstract class AbstractTransferFunction implements TransferFunction {
    public abstract double calculate(double x);

    @Override
    public Object clone(){
        throw new NotImplementedException();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy