Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
ogs
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
Yuhao Liu
ogs
Commits
353c9268
Commit
353c9268
authored
8 years ago
by
Christoph Lehmann
Browse files
Options
Downloads
Patches
Plain Diff
[PL] expose DOF table
parent
cc34f35e
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
ProcessLib/ExtrapolatorData.h
+11
-5
11 additions, 5 deletions
ProcessLib/ExtrapolatorData.h
ProcessLib/Process.h
+7
-2
7 additions, 2 deletions
ProcessLib/Process.h
with
18 additions
and
7 deletions
ProcessLib/ExtrapolatorData.h
+
11
−
5
View file @
353c9268
...
@@ -28,17 +28,17 @@ struct ExtrapolatorData
...
@@ -28,17 +28,17 @@ struct ExtrapolatorData
ExtrapolatorData
()
=
default
;
ExtrapolatorData
()
=
default
;
ExtrapolatorData
(
ExtrapolatorData
(
std
::
unique_ptr
<
NumLib
::
Extrapolator
>&&
extrapolator
_
,
std
::
unique_ptr
<
NumLib
::
Extrapolator
>&&
extrapolator
,
NumLib
::
LocalToGlobalIndexMap
const
*
const
dof_table_single_component
,
NumLib
::
LocalToGlobalIndexMap
const
*
const
dof_table_single_component
,
bool
const
manage_storage
)
bool
const
manage_storage
)
:
extrapolator
(
std
::
move
(
extrapolator
_
))
:
_
extrapolator
(
std
::
move
(
extrapolator
))
,
_dof_table_single_component
(
dof_table_single_component
)
,
_dof_table_single_component
(
dof_table_single_component
)
,
_manage_storage
(
manage_storage
)
,
_manage_storage
(
manage_storage
)
{
{
}
}
ExtrapolatorData
(
ExtrapolatorData
&&
other
)
ExtrapolatorData
(
ExtrapolatorData
&&
other
)
:
extrapolator
(
std
::
move
(
other
.
extrapolator
))
:
_
extrapolator
(
std
::
move
(
other
.
_
extrapolator
))
,
_dof_table_single_component
(
other
.
_dof_table_single_component
)
,
_dof_table_single_component
(
other
.
_dof_table_single_component
)
,
_manage_storage
(
other
.
_manage_storage
)
,
_manage_storage
(
other
.
_manage_storage
)
{
{
...
@@ -51,12 +51,17 @@ struct ExtrapolatorData
...
@@ -51,12 +51,17 @@ struct ExtrapolatorData
cleanup
();
cleanup
();
_manage_storage
=
other
.
_manage_storage
;
_manage_storage
=
other
.
_manage_storage
;
_dof_table_single_component
=
other
.
_dof_table_single_component
;
_dof_table_single_component
=
other
.
_dof_table_single_component
;
extrapolator
=
std
::
move
(
other
.
extrapolator
);
_
extrapolator
=
std
::
move
(
other
.
_
extrapolator
);
return
*
this
;
return
*
this
;
}
}
NumLib
::
LocalToGlobalIndexMap
const
&
getDOFTable
()
const
{
return
*
_dof_table_single_component
;
}
NumLib
::
Extrapolator
&
getExtrapolator
()
const
{
return
*
_extrapolator
;
}
~
ExtrapolatorData
()
{
cleanup
();
}
~
ExtrapolatorData
()
{
cleanup
();
}
std
::
unique_ptr
<
NumLib
::
Extrapolator
>
extrapolator
;
private
:
private
:
void
cleanup
()
void
cleanup
()
...
@@ -66,6 +71,7 @@ private:
...
@@ -66,6 +71,7 @@ private:
}
}
}
}
std
::
unique_ptr
<
NumLib
::
Extrapolator
>
_extrapolator
;
NumLib
::
LocalToGlobalIndexMap
const
*
_dof_table_single_component
=
nullptr
;
NumLib
::
LocalToGlobalIndexMap
const
*
_dof_table_single_component
=
nullptr
;
bool
_manage_storage
=
false
;
bool
_manage_storage
=
false
;
};
};
...
...
This diff is collapsed.
Click to expand it.
ProcessLib/Process.h
+
7
−
2
View file @
353c9268
...
@@ -87,9 +87,14 @@ public:
...
@@ -87,9 +87,14 @@ public:
}
}
protected
:
protected
:
NumLib
::
Extrapolator
&
getExtrapolator
()
NumLib
::
Extrapolator
&
getExtrapolator
()
const
{
{
return
*
_extrapolator_data
.
extrapolator
;
return
_extrapolator_data
.
getExtrapolator
();
}
NumLib
::
LocalToGlobalIndexMap
const
&
getSingleComponentDOFTable
()
const
{
return
_extrapolator_data
.
getDOFTable
();
}
}
private
:
private
:
...
...
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