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
1bd252e4
There was an error fetching the commit references. Please try again later.
Commit
1bd252e4
authored
7 years ago
by
Jakub Klinkovský
Browse files
Options
Downloads
Patches
Plain Diff
Renamed Dimensions to Dimension in VectorField.h
parent
850819a9
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/VectorField.h
+10
-10
10 additions, 10 deletions
src/TNL/Functions/VectorField.h
with
10 additions
and
10 deletions
src/TNL/Functions/VectorField.h
+
10
−
10
View file @
1bd252e4
...
@@ -72,11 +72,11 @@ class VectorField
...
@@ -72,11 +72,11 @@ class VectorField
template
<
int
Size
,
template
<
int
Size
,
typename
Mesh
,
typename
Mesh
,
int
MeshEntityDimension
s
,
int
MeshEntityDimension
,
typename
Real
>
typename
Real
>
class
VectorField
<
Size
,
MeshFunction
<
Mesh
,
MeshEntityDimension
s
,
Real
>
>
class
VectorField
<
Size
,
MeshFunction
<
Mesh
,
MeshEntityDimension
,
Real
>
>
:
public
Functions
::
Domain
<
MeshFunction
<
Mesh
,
MeshEntityDimension
s
,
Real
>::
getDomainDimension
(),
:
public
Functions
::
Domain
<
MeshFunction
<
Mesh
,
MeshEntityDimension
,
Real
>::
getDomainDimension
(),
MeshFunction
<
Mesh
,
MeshEntityDimension
s
,
Real
>::
getDomainType
()
>
,
MeshFunction
<
Mesh
,
MeshEntityDimension
,
Real
>::
getDomainType
()
>
,
public
Object
public
Object
{
{
public:
public:
...
@@ -84,11 +84,11 @@ class VectorField< Size, MeshFunction< Mesh, MeshEntityDimensions, Real > >
...
@@ -84,11 +84,11 @@ class VectorField< Size, MeshFunction< Mesh, MeshEntityDimensions, Real > >
typedef
Mesh
MeshType
;
typedef
Mesh
MeshType
;
typedef
Real
RealType
;
typedef
Real
RealType
;
typedef
SharedPointer
<
MeshType
>
MeshPointer
;
typedef
SharedPointer
<
MeshType
>
MeshPointer
;
typedef
MeshFunction
<
MeshType
,
MeshEntityDimension
s
,
RealType
>
FunctionType
;
typedef
MeshFunction
<
MeshType
,
MeshEntityDimension
,
RealType
>
FunctionType
;
typedef
SharedPointer
<
FunctionType
>
FunctionPointer
;
typedef
SharedPointer
<
FunctionType
>
FunctionPointer
;
typedef
typename
MeshType
::
DeviceType
DeviceType
;
typedef
typename
MeshType
::
DeviceType
DeviceType
;
typedef
typename
MeshType
::
IndexType
IndexType
;
typedef
typename
MeshType
::
IndexType
IndexType
;
typedef
VectorField
<
Size
,
MeshFunction
<
Mesh
,
MeshEntityDimension
s
,
RealType
>
>
ThisType
;
typedef
VectorField
<
Size
,
MeshFunction
<
Mesh
,
MeshEntityDimension
,
RealType
>
>
ThisType
;
typedef
Containers
::
StaticVector
<
Size
,
RealType
>
VectorType
;
typedef
Containers
::
StaticVector
<
Size
,
RealType
>
VectorType
;
static
void
configSetup
(
Config
::
ConfigDescription
&
config
,
static
void
configSetup
(
Config
::
ConfigDescription
&
config
,
...
@@ -260,14 +260,14 @@ class VectorField< Size, MeshFunction< Mesh, MeshEntityDimensions, Real > >
...
@@ -260,14 +260,14 @@ class VectorField< Size, MeshFunction< Mesh, MeshEntityDimensions, Real > >
};
};
template
<
int
Dimension
s
,
template
<
int
Dimension
,
typename
Function
>
typename
Function
>
std
::
ostream
&
operator
<<
(
std
::
ostream
&
str
,
const
VectorField
<
Dimension
s
,
Function
>&
f
)
std
::
ostream
&
operator
<<
(
std
::
ostream
&
str
,
const
VectorField
<
Dimension
,
Function
>&
f
)
{
{
for
(
int
i
=
0
;
i
<
Dimension
s
;
i
++
)
for
(
int
i
=
0
;
i
<
Dimension
;
i
++
)
{
{
str
<<
"[ "
<<
f
[
i
]
<<
" ]"
;
str
<<
"[ "
<<
f
[
i
]
<<
" ]"
;
if
(
i
<
Dimension
s
-
1
)
if
(
i
<
Dimension
-
1
)
str
<<
", "
;
str
<<
", "
;
}
}
return
str
;
return
str
;
...
...
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