Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
D
dynamic
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
MostafaMollaali
dynamic
Commits
a8489a63
"GeoLib/AnalyticalGeometry.cpp" did not exist on "8c1eb96bf2e046b0408cb7aeb82c5ca5adc41722"
Commit
a8489a63
authored
9 years ago
by
Dmitri Naumov
Browse files
Options
Downloads
Patches
Plain Diff
[MaL] ODE: Merge init() and setFunction() methods.
parent
1d29ac16
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
MathLib/ODE/OdeSolver.h
+2
-4
2 additions, 4 deletions
MathLib/ODE/OdeSolver.h
MathLib/ODE/OdeSolverFactory.h
+4
-8
4 additions, 8 deletions
MathLib/ODE/OdeSolverFactory.h
Tests/MathLib/TestCVode.cpp
+0
-5
0 additions, 5 deletions
Tests/MathLib/TestCVode.cpp
with
6 additions
and
17 deletions
MathLib/ODE/OdeSolver.h
+
2
−
4
View file @
a8489a63
...
@@ -34,14 +34,12 @@ public:
...
@@ -34,14 +34,12 @@ public:
using
JacobianFunction
=
using
JacobianFunction
=
MathLib
::
JacobianFunction
<
NumEquations
,
FunctionArguments
...
>
;
MathLib
::
JacobianFunction
<
NumEquations
,
FunctionArguments
...
>
;
virtual
void
init
()
=
0
;
virtual
void
setFunction
(
Function
f
,
JacobianFunction
df
,
FunctionArguments
&
...
args
)
=
0
;
virtual
void
setTolerance
(
const
Arr
&
abstol
,
const
double
reltol
)
=
0
;
virtual
void
setTolerance
(
const
Arr
&
abstol
,
const
double
reltol
)
=
0
;
virtual
void
setTolerance
(
const
double
abstol
,
const
double
reltol
)
=
0
;
virtual
void
setTolerance
(
const
double
abstol
,
const
double
reltol
)
=
0
;
virtual
void
setFunction
(
Function
f
,
JacobianFunction
df
,
FunctionArguments
&
...
args
)
=
0
;
virtual
void
setIC
(
const
double
t0
,
const
Arr
&
y0
)
=
0
;
virtual
void
setIC
(
const
double
t0
,
const
Arr
&
y0
)
=
0
;
virtual
void
preSolve
()
=
0
;
virtual
void
preSolve
()
=
0
;
...
...
This diff is collapsed.
Click to expand it.
MathLib/ODE/OdeSolverFactory.h
+
4
−
8
View file @
a8489a63
...
@@ -142,9 +142,12 @@ public:
...
@@ -142,9 +142,12 @@ public:
using
Function
=
typename
Interface
::
Function
;
using
Function
=
typename
Interface
::
Function
;
using
JacobianFunction
=
typename
Interface
::
JacobianFunction
;
using
JacobianFunction
=
typename
Interface
::
JacobianFunction
;
void
init
()
override
void
setFunction
(
Function
f
,
JacobianFunction
df
,
FunctionArguments
&
...
args
)
override
{
{
Implementation
::
init
(
NumEquations
);
Implementation
::
init
(
NumEquations
);
_handles
.
reset
(
new
detail
::
Handles
<
NumEquations
,
FunctionArguments
...
>
{
f
,
df
,
args
...});
Implementation
::
setFunction
(
_handles
.
get
());
Implementation
::
setFunction
(
_handles
.
get
());
}
}
...
@@ -158,13 +161,6 @@ public:
...
@@ -158,13 +161,6 @@ public:
Implementation
::
setTolerance
(
abstol
,
reltol
);
Implementation
::
setTolerance
(
abstol
,
reltol
);
}
}
void
setFunction
(
Function
f
,
JacobianFunction
df
,
FunctionArguments
&
...
args
)
override
{
_handles
.
reset
(
new
detail
::
Handles
<
NumEquations
,
FunctionArguments
...
>
{
f
,
df
,
args
...});
}
void
setIC
(
const
double
t0
,
const
Arr
&
y0
)
override
void
setIC
(
const
double
t0
,
const
Arr
&
y0
)
override
{
{
Implementation
::
setIC
(
t0
,
y0
.
data
());
Implementation
::
setIC
(
t0
,
y0
.
data
());
...
...
This diff is collapsed.
Click to expand it.
Tests/MathLib/TestCVode.cpp
+
0
−
5
View file @
a8489a63
...
@@ -64,7 +64,6 @@ TEST(MathLibCVodeTest, Exponential)
...
@@ -64,7 +64,6 @@ TEST(MathLibCVodeTest, Exponential)
auto
ode_solver
=
MathLib
::
createOdeSolver
<
1
>
(
config
);
auto
ode_solver
=
MathLib
::
createOdeSolver
<
1
>
(
config
);
ode_solver
->
setFunction
(
f
,
nullptr
);
ode_solver
->
setFunction
(
f
,
nullptr
);
ode_solver
->
init
();
ode_solver
->
setTolerance
(
1e-8
,
1e-6
);
ode_solver
->
setTolerance
(
1e-8
,
1e-6
);
ode_solver
->
setIC
(
t0
,
{
y0
});
ode_solver
->
setIC
(
t0
,
{
y0
});
...
@@ -103,8 +102,6 @@ TEST(MathLibCVodeTest, ExponentialExtraData)
...
@@ -103,8 +102,6 @@ TEST(MathLibCVodeTest, ExponentialExtraData)
ExtraData
data
;
ExtraData
data
;
ode_solver
->
setFunction
(
f_extra
,
nullptr
,
data
);
ode_solver
->
setFunction
(
f_extra
,
nullptr
,
data
);
ode_solver
->
init
();
ode_solver
->
setTolerance
(
1e-8
,
1e-6
);
ode_solver
->
setTolerance
(
1e-8
,
1e-6
);
ode_solver
->
setIC
(
t0
,
{
y0
});
ode_solver
->
setIC
(
t0
,
{
y0
});
...
@@ -159,7 +156,6 @@ TEST(MathLibCVodeTest, ExponentialWithJacobian)
...
@@ -159,7 +156,6 @@ TEST(MathLibCVodeTest, ExponentialWithJacobian)
auto
ode_solver
=
MathLib
::
createOdeSolver
<
1
>
(
config
);
auto
ode_solver
=
MathLib
::
createOdeSolver
<
1
>
(
config
);
ode_solver
->
setFunction
(
f
,
df
);
ode_solver
->
setFunction
(
f
,
df
);
ode_solver
->
init
();
ode_solver
->
setTolerance
(
1e-10
,
1e-8
);
ode_solver
->
setTolerance
(
1e-10
,
1e-8
);
ode_solver
->
setIC
(
t0
,
{
y0
});
ode_solver
->
setIC
(
t0
,
{
y0
});
...
@@ -200,7 +196,6 @@ TEST(MathLibCVodeTest, ExponentialWithJacobianNewton)
...
@@ -200,7 +196,6 @@ TEST(MathLibCVodeTest, ExponentialWithJacobianNewton)
auto
ode_solver
=
MathLib
::
createOdeSolver
<
1
>
(
config
);
auto
ode_solver
=
MathLib
::
createOdeSolver
<
1
>
(
config
);
ode_solver
->
setFunction
(
f
,
df
);
ode_solver
->
setFunction
(
f
,
df
);
ode_solver
->
init
();
ode_solver
->
setTolerance
(
1e-6
,
1e-6
);
ode_solver
->
setTolerance
(
1e-6
,
1e-6
);
ode_solver
->
setIC
(
t0
,
{
y0
});
ode_solver
->
setIC
(
t0
,
{
y0
});
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment