Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Nektar
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
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
Giacomo Castiglioni
Nektar
Commits
65accd7c
Commit
65accd7c
authored
12 years ago
by
Dave Moxey
Browse files
Options
Downloads
Plain Diff
Merge branch 'fix/full-debug' of localhost:nektar
parents
e7e1ac00
ab5df899
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
library/SpatialDomains/Geometry3D.cpp
+12
-12
12 additions, 12 deletions
library/SpatialDomains/Geometry3D.cpp
with
12 additions
and
12 deletions
library/SpatialDomains/Geometry3D.cpp
+
12
−
12
View file @
65accd7c
...
...
@@ -300,9 +300,9 @@ namespace Nektar
*/
int
Geometry3D
::
v_GetVid
(
const
int
i
)
const
{
ASSERTL2
(
i
>=
0
&&
i
<=
m_verts
.
num_elements
()
-
1
,
ASSERTL2
(
i
>=
0
&&
i
<=
m_verts
.
size
()
-
1
,
"Vertex ID must be between 0 and "
+
boost
::
lexical_cast
<
string
>
(
m_verts
.
num_elements
()
-
1
));
boost
::
lexical_cast
<
string
>
(
m_verts
.
size
()
-
1
));
return
m_verts
[
i
]
->
GetVid
();
}
...
...
@@ -311,9 +311,9 @@ namespace Nektar
*/
const
SegGeomSharedPtr
Geometry3D
::
v_GetEdge
(
int
i
)
const
{
ASSERTL2
(
i
>=
0
&&
i
<=
m_edges
.
num_elements
()
-
1
,
ASSERTL2
(
i
>=
0
&&
i
<=
m_edges
.
size
()
-
1
,
"Edge ID must be between 0 and "
+
boost
::
lexical_cast
<
string
>
(
m_edges
.
num_elements
()
-
1
));
boost
::
lexical_cast
<
string
>
(
m_edges
.
size
()
-
1
));
return
m_edges
[
i
];
}
...
...
@@ -323,9 +323,9 @@ namespace Nektar
inline
StdRegions
::
Orientation
Geometry3D
::
v_GetEorient
(
const
int
i
)
const
{
ASSERTL2
(
i
>=
0
&&
i
<=
m_edges
.
num_elements
()
-
1
,
ASSERTL2
(
i
>=
0
&&
i
<=
m_edges
.
size
()
-
1
,
"Edge ID must be between 0 and "
+
boost
::
lexical_cast
<
string
>
(
m_edges
.
num_elements
()
-
1
));
boost
::
lexical_cast
<
string
>
(
m_edges
.
size
()
-
1
));
return
m_eorient
[
i
];
}
...
...
@@ -334,9 +334,9 @@ namespace Nektar
*/
int
Geometry3D
::
v_GetEid
(
int
i
)
const
{
ASSERTL2
(
i
>=
0
&&
i
<=
m_edges
.
num_elements
()
-
1
,
ASSERTL2
(
i
>=
0
&&
i
<=
m_edges
.
size
()
-
1
,
"Edge ID must be between 0 and "
+
boost
::
lexical_cast
<
string
>
(
m_edges
.
num_elements
()
-
1
));
boost
::
lexical_cast
<
string
>
(
m_edges
.
size
()
-
1
));
return
m_edges
[
i
]
->
GetEid
();
}
...
...
@@ -354,9 +354,9 @@ namespace Nektar
*/
StdRegions
::
Orientation
Geometry3D
::
v_GetFaceOrient
(
const
int
i
)
const
{
ASSERTL2
(
i
>=
0
&&
i
<=
m_faces
.
num_elements
()
-
1
,
ASSERTL2
(
i
>=
0
&&
i
<=
m_faces
.
size
()
-
1
,
"Face ID must be between 0 and "
+
boost
::
lexical_cast
<
string
>
(
m_faces
.
num_elements
()
-
1
));
boost
::
lexical_cast
<
string
>
(
m_faces
.
size
()
-
1
));
return
m_forient
[
i
];
}
...
...
@@ -365,9 +365,9 @@ namespace Nektar
*/
int
Geometry3D
::
v_GetFid
(
int
i
)
const
{
ASSERTL2
(
i
>=
0
&&
i
<=
m_faces
.
num_elements
()
-
1
,
ASSERTL2
(
i
>=
0
&&
i
<=
m_faces
.
size
()
-
1
,
"Face ID must be between 0 and "
+
boost
::
lexical_cast
<
string
>
(
m_faces
.
num_elements
()
-
1
));
boost
::
lexical_cast
<
string
>
(
m_faces
.
size
()
-
1
));
return
m_faces
[
i
]
->
GetFid
();
}
...
...
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