Changeset 508 in Sophya for trunk/SophyaLib/NTools/rk4cdifeq.h


Ignore:
Timestamp:
Oct 25, 1999, 12:36:22 PM (26 years ago)
Author:
ansari
Message:

Vector/Matrix OVector/OMatrix cmv 25/10/99

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaLib/NTools/rk4cdifeq.h

    r220 r508  
    2020  // <group>
    2121  RK4CDiffEq& Accuracy(double);
    22   RK4CDiffEq& AbsAccuracy(Vector const& vScal);
     22  RK4CDiffEq& AbsAccuracy(OVector const& vScal);
    2323  RK4CDiffEq& AbsAccuracy(double scal);
    2424  RK4CDiffEq& RelAccuracy();
     
    2626 
    2727  // Implementation RK4 adaptatif
    28   virtual void SolveArr(Matrix& y, double* t, double tf, int n);
     28  virtual void SolveArr(OMatrix& y, double* t, double tf, int n);
    2929
    3030protected:
    3131  // Un pas adaptatif
    32   void RKCStep(Vector& newY, Vector const& y0, Vector const& yScale,
     32  void RKCStep(OVector& newY, OVector const& y0, OVector const& yScale,
    3333               double dttry, double& dtdone, double& dtnext);
    3434
    3535  double eps;
    3636  bool   relAccuracy;
    37   Vector accScale;
    38   Vector yTemp; // Pour ne pas reallouer
    39   Vector ySave;
     37  OVector accScale;
     38  OVector yTemp; // Pour ne pas reallouer
     39  OVector ySave;
    4040};
    4141
Note: See TracChangeset for help on using the changeset viewer.