public class TestActivationLinear extends TestCase {
@Test
public void testLinear() throws Throwable
{
ActivationLinear activation = new ActivationLinear();
Assert.assertTrue(activation.hasDerivative());
ActivationLinear clone = (ActivationLinear)activation.clone();
Assert.assertNotNull(clone);
double[] input = { 1,2,3 };
activation.activationFunction(input,0,input.length);