Change name of math.h and math.cpp

This commit is contained in:
Paddle
2023-10-05 16:41:26 +02:00
parent 92b401641f
commit a630846856
7 changed files with 11 additions and 11 deletions

View File

@@ -186,12 +186,12 @@ set(ONDSEL_EXPORT
OndselSolver/LinearMultiStepMethod.cpp
OndselSolver/LineInPlaneJoint.cpp
OndselSolver/MarkerFrame.cpp
OndselSolver/Math.cpp
OndselSolver/MatrixDecomposition.cpp
OndselSolver/MatrixGaussElimination.cpp
OndselSolver/MatrixLDU.cpp
OndselSolver/MatrixSolver.cpp
OndselSolver/MaximumIterationError.cpp
OndselSolver/MbdMath.cpp
OndselSolver/NewtonRaphson.cpp
OndselSolver/NewtonRaphsonError.cpp
OndselSolver/NoRotationJoint.cpp

View File

@@ -6,4 +6,4 @@
* See LICENSE file for details about copyright. *
***************************************************************************/
#include "Math.h"
#include "MbdMath.h"

View File

@@ -9,7 +9,7 @@
#pragma once
namespace MbD {
class Math
class MbdMath
{
};
}

View File

@@ -9,10 +9,10 @@
#pragma once
#include <vector>
#include "Math.h"
#include "MbdMath.h"
namespace MbD {
class Numeric : public Math
class Numeric : public MbdMath
{
//
public:

View File

@@ -332,12 +332,12 @@
<ClCompile Include="LinearMultiStepMethod.cpp" />
<ClCompile Include="LineInPlaneJoint.cpp" />
<ClCompile Include="MarkerFrame.cpp" />
<ClCompile Include="Math.cpp" />
<ClCompile Include="MatrixDecomposition.cpp" />
<ClCompile Include="MatrixGaussElimination.cpp" />
<ClCompile Include="MatrixLDU.cpp" />
<ClCompile Include="MatrixSolver.cpp" />
<ClCompile Include="MaximumIterationError.cpp" />
<ClCompile Include="MbdMath.cpp" />
<ClCompile Include="NewtonRaphson.cpp" />
<ClCompile Include="NewtonRaphsonError.cpp" />
<ClCompile Include="NoRotationJoint.cpp" />
@@ -619,12 +619,12 @@
<ClInclude Include="LinearMultiStepMethod.h" />
<ClInclude Include="LineInPlaneJoint.h" />
<ClInclude Include="MarkerFrame.h" />
<ClInclude Include="Math.h" />
<ClInclude Include="MatrixDecomposition.h" />
<ClInclude Include="MatrixGaussElimination.h" />
<ClInclude Include="MatrixLDU.h" />
<ClInclude Include="MatrixSolver.h" />
<ClInclude Include="MaximumIterationError.h" />
<ClInclude Include="MbdMath.h" />
<ClInclude Include="NewtonRaphson.h" />
<ClInclude Include="NewtonRaphsonError.h" />
<ClInclude Include="NoRotationJoint.h" />

View File

@@ -507,7 +507,7 @@
<ClCompile Include="OrbitAngleZIeqcJeqc.cpp">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="Math.cpp">
<ClCompile Include="MbdMath.cpp">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="Numeric.cpp">
@@ -1367,7 +1367,7 @@
<ClInclude Include="OrbitAngleZIeqcJeqc.h">
<Filter>Header Files</Filter>
</ClInclude>
<ClInclude Include="Math.h">
<ClInclude Include="MbdMath.h">
<Filter>Header Files</Filter>
</ClInclude>
<ClInclude Include="Numeric.h">

View File

@@ -13,7 +13,7 @@
#include <memory>
#include <ostream>
#include "Math.h"
#include "MbdMath.h"
#include "System.h"
#include "Units.h"
//#include "Constant.h"
@@ -23,7 +23,7 @@ namespace MbD {
class Symbolic;
using Symsptr = std::shared_ptr<Symbolic>;
class Symbolic : public Math
class Symbolic : public MbdMath
{
public:
Symbolic();