Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tnl-dev
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
TNL
tnl-dev
Commits
35141c80
There was an error fetching the commit references. Please try again later.
Commit
35141c80
authored
6 years ago
by
Tomáš Oberhuber
Browse files
Options
Downloads
Patches
Plain Diff
Fixes after merge.
parent
84598307
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/TNL/Functions/MeshFunction_impl.h
+0
-13
0 additions, 13 deletions
src/TNL/Functions/MeshFunction_impl.h
with
0 additions
and
13 deletions
src/TNL/Functions/MeshFunction_impl.h
+
0
−
13
View file @
35141c80
...
@@ -68,15 +68,11 @@ MeshFunction( const MeshPointer& meshPointer,
...
@@ -68,15 +68,11 @@ MeshFunction( const MeshPointer& meshPointer,
const
IndexType
&
offset
)
const
IndexType
&
offset
)
//: meshPointer( meshPointer )
//: meshPointer( meshPointer )
{
{
<<<<<<<
HEAD
TNL_ASSERT_GE
(
data
.
getSize
(),
meshPointer
->
template
getEntitiesCount
<
typename
MeshType
::
template
EntityType
<
MeshEntityDimension
>
>(),
TNL_ASSERT_GE
(
data
.
getSize
(),
meshPointer
->
template
getEntitiesCount
<
typename
MeshType
::
template
EntityType
<
MeshEntityDimension
>
>(),
"The input vector is not large enough for binding to the mesh function."
);
"The input vector is not large enough for binding to the mesh function."
);
=======
SetupSynchronizer
(
meshPointer
->
GetDistMesh
());
SetupSynchronizer
(
meshPointer
->
GetDistMesh
());
this
->
meshPointer
=
meshPointer
;
this
->
meshPointer
=
meshPointer
;
>>>>>>>
origin
/
mpi
-
explosive
this
->
data
.
bind
(
data
,
offset
,
getMesh
().
template
getEntitiesCount
<
typename
Mesh
::
template
EntityType
<
MeshEntityDimension
>
>()
);
this
->
data
.
bind
(
data
,
offset
,
getMesh
().
template
getEntitiesCount
<
typename
Mesh
::
template
EntityType
<
MeshEntityDimension
>
>()
);
}
}
...
@@ -91,15 +87,12 @@ MeshFunction( const MeshPointer& meshPointer,
...
@@ -91,15 +87,12 @@ MeshFunction( const MeshPointer& meshPointer,
const
IndexType
&
offset
)
const
IndexType
&
offset
)
//: meshPointer( meshPointer )
//: meshPointer( meshPointer )
{
{
<<<<<<<
HEAD
TNL_ASSERT_GE
(
data
->
getSize
(),
offset
+
meshPointer
->
template
getEntitiesCount
<
typename
MeshType
::
template
EntityType
<
MeshEntityDimension
>
>(),
TNL_ASSERT_GE
(
data
->
getSize
(),
offset
+
meshPointer
->
template
getEntitiesCount
<
typename
MeshType
::
template
EntityType
<
MeshEntityDimension
>
>(),
"The input vector is not large enough for binding to the mesh function."
);
"The input vector is not large enough for binding to the mesh function."
);
=======
SetupSynchronizer
(
meshPointer
->
GetDistMesh
());
SetupSynchronizer
(
meshPointer
->
GetDistMesh
());
this
->
meshPointer
=
meshPointer
;
this
->
meshPointer
=
meshPointer
;
>>>>>>>
origin
/
mpi
-
explosive
this
->
data
.
bind
(
*
data
,
offset
,
getMesh
().
template
getEntitiesCount
<
typename
Mesh
::
template
EntityType
<
MeshEntityDimension
>
>()
);
this
->
data
.
bind
(
*
data
,
offset
,
getMesh
().
template
getEntitiesCount
<
typename
Mesh
::
template
EntityType
<
MeshEntityDimension
>
>()
);
}
}
...
@@ -211,16 +204,13 @@ bind( const MeshPointer& meshPointer,
...
@@ -211,16 +204,13 @@ bind( const MeshPointer& meshPointer,
const
Vector
&
data
,
const
Vector
&
data
,
const
IndexType
&
offset
)
const
IndexType
&
offset
)
{
{
<<<<<<<
HEAD
TNL_ASSERT_GE
(
data
.
getSize
(),
offset
+
meshPointer
->
template
getEntitiesCount
<
typename
MeshType
::
template
EntityType
<
MeshEntityDimension
>
>(),
TNL_ASSERT_GE
(
data
.
getSize
(),
offset
+
meshPointer
->
template
getEntitiesCount
<
typename
MeshType
::
template
EntityType
<
MeshEntityDimension
>
>(),
"The input vector is not large enough for binding to the mesh function."
);
"The input vector is not large enough for binding to the mesh function."
);
this
->
meshPointer
=
meshPointer
;
this
->
meshPointer
=
meshPointer
;
=======
SetupSynchronizer
(
meshPointer
->
GetDistMesh
());
SetupSynchronizer
(
meshPointer
->
GetDistMesh
());
this
->
meshPointer
=
meshPointer
;
this
->
meshPointer
=
meshPointer
;
>>>>>>>
origin
/
mpi
-
explosive
this
->
data
.
bind
(
data
,
offset
,
getMesh
().
template
getEntitiesCount
<
typename
Mesh
::
template
EntityType
<
MeshEntityDimension
>
>()
);
this
->
data
.
bind
(
data
,
offset
,
getMesh
().
template
getEntitiesCount
<
typename
Mesh
::
template
EntityType
<
MeshEntityDimension
>
>()
);
}
}
...
@@ -234,16 +224,13 @@ bind( const MeshPointer& meshPointer,
...
@@ -234,16 +224,13 @@ bind( const MeshPointer& meshPointer,
const
SharedPointer
<
Vector
>&
data
,
const
SharedPointer
<
Vector
>&
data
,
const
IndexType
&
offset
)
const
IndexType
&
offset
)
{
{
<<<<<<<
HEAD
TNL_ASSERT_GE
(
data
->
getSize
(),
offset
+
meshPointer
->
template
getEntitiesCount
<
typename
MeshType
::
template
EntityType
<
MeshEntityDimension
>
>(),
TNL_ASSERT_GE
(
data
->
getSize
(),
offset
+
meshPointer
->
template
getEntitiesCount
<
typename
MeshType
::
template
EntityType
<
MeshEntityDimension
>
>(),
"The input vector is not large enough for binding to the mesh function."
);
"The input vector is not large enough for binding to the mesh function."
);
this
->
meshPointer
=
meshPointer
;
this
->
meshPointer
=
meshPointer
;
=======
SetupSynchronizer
(
meshPointer
->
GetDistMesh
());
SetupSynchronizer
(
meshPointer
->
GetDistMesh
());
this
->
meshPointer
=
meshPointer
;
this
->
meshPointer
=
meshPointer
;
>>>>>>>
origin
/
mpi
-
explosive
this
->
data
.
bind
(
*
data
,
offset
,
getMesh
().
template
getEntitiesCount
<
typename
Mesh
::
template
EntityType
<
MeshEntityDimension
>
>()
);
this
->
data
.
bind
(
*
data
,
offset
,
getMesh
().
template
getEntitiesCount
<
typename
Mesh
::
template
EntityType
<
MeshEntityDimension
>
>()
);
}
}
...
...
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