This commit is contained in:
Alexander Dörr 2010-02-23 08:04:41 +00:00
parent 2469264049
commit bac6beb204
2 changed files with 1 additions and 2 deletions

View File

@ -26,7 +26,7 @@ public interface EventDESystem extends DESystem {
*
* @return Returns an array with delays for the change of concentration due to events
*/
public List<DESAssignment> processEvents(double t, double Y[], double[] res);
public List<DESAssignment> processEvents(double t, double Y[]);
public List<DESAssignment> processAssignmentRules(double t, double Y[]);

View File

@ -1,7 +1,6 @@
package eva2.tools.math.des;
import java.io.Serializable;
import java.util.ArrayList;
import eva2.tools.math.Mathematics;