|
From: <de...@us...> - 2003-04-12 10:17:08
|
Update of /cvsroot/csp/APPLICATIONS/CSPSim/Include
In directory sc8-pr-cvs1:/tmp/cvs-serv2238
Modified Files:
NumericalMethod.h DynamicalSystem.h
Log Message:
no message
Index: NumericalMethod.h
===================================================================
RCS file: /cvsroot/csp/APPLICATIONS/CSPSim/Include/NumericalMethod.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** NumericalMethod.h 11 Apr 2003 23:43:06 -0000 1.2
--- NumericalMethod.h 12 Apr 2003 10:17:05 -0000 1.3
***************
*** 35,39 ****
unsigned short const m_dimension;
public:
! VectorField(unsigned short dimension):
m_dimension(dimension) {
}
--- 35,39 ----
unsigned short const m_dimension;
public:
! VectorField(unsigned short dimension ):
m_dimension(dimension) {
}
***************
*** 41,45 ****
return m_dimension;
}
! virtual std::vector<double> const& _f(double t, std::vector<double>& y) = 0;
};
--- 41,45 ----
return m_dimension;
}
! virtual std::vector<double> const& _f(double t, std::vector<double>& y) = 0;
};
Index: DynamicalSystem.h
===================================================================
RCS file: /cvsroot/csp/APPLICATIONS/CSPSim/Include/DynamicalSystem.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** DynamicalSystem.h 11 Apr 2003 23:43:06 -0000 1.3
--- DynamicalSystem.h 12 Apr 2003 10:17:05 -0000 1.4
***************
*** 38,42 ****
DynamicalSystem(VectorField* pf);
virtual ~DynamicalSystem();
- //void setVectorField(VectorField* pf);
void setNumericalMethod(NumericalMethod* pnumericalMethod);
std::vector<double> const& flow(std::vector<double>& y0, double t0, double dt) const;
--- 38,41 ----
|