View Javadoc

1   package org.catacomb.numeric.difnet;
2   
3   
4   
5   public interface Stimulus {
6   
7   
8       int VALUE = 1;
9       int FLUX = 2;
10  
11  
12      double getValue(double t);
13  
14      int getType();
15  
16  
17  }