// $AISD_VERSION:RKInt.java@1.1/home/coei/arc/archive%shell3.ba.best.com$ //COPYRIGHT: //COPYRIGHT: Copyright (c) 1997 by Christopher K. Oei, Incorporated. //COPYRIGHT: //COPYRIGHT: http://www.chrisoei.com //COPYRIGHT: info@chrisoei.com //COPYRIGHT: //COPYRIGHT: Permission to use, display, and modify this code //COPYRIGHT: is hereby granted provided that: //COPYRIGHT: //COPYRIGHT: 1) this notice is included in its entirety //COPYRIGHT: 2) we are notified of the usage public abstract class RKInt { public double t; public double[] x; double[] k1,k2,k3,k4; public double dt; int n; public RKInt(double i_t, double[] i_x, double i_dt) { int j; t=i_t; dt=i_dt; n=i_x.length; x = new double[n]; for (j=0;j