Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Nektar
Nektar
Commits
6ba8680f
Commit
6ba8680f
authored
Feb 19, 2013
by
Pavel Burovskiy
Browse files
Changing name of local matrix storage strategy
parent
e0782b63
Changes
2
Hide whitespace changes
Inline
Side-by-side
library/MultiRegions/GlobalLinSysIterativeStaticCond.cpp
View file @
6ba8680f
...
...
@@ -65,15 +65,15 @@ namespace Nektar
std
::
string
GlobalLinSysIterativeStaticCond
::
storagedef
=
LibUtilities
::
SessionReader
::
RegisterDefaultSolverInfo
(
"Local
Helm
StorageStrategy"
,
"Local
Matrix
StorageStrategy"
,
"Non-contiguous"
);
std
::
string
GlobalLinSysIterativeStaticCond
::
storagelookupIds
[
2
]
=
{
LibUtilities
::
SessionReader
::
RegisterEnumValue
(
"Local
Helm
StorageStrategy"
,
"Local
Matrix
StorageStrategy"
,
"Contiguous"
,
MultiRegions
::
eContiguous
),
LibUtilities
::
SessionReader
::
RegisterEnumValue
(
"Local
Helm
StorageStrategy"
,
"Local
Matrix
StorageStrategy"
,
"Non-contiguous"
,
MultiRegions
::
eNonContiguous
),
};
...
...
@@ -399,8 +399,8 @@ namespace Nektar
}
else
{
Local
Helm
StorageStrategy
storageStrategy
=
m_expList
.
lock
()
->
GetSession
()
->
GetSolverInfoAsEnum
<
Local
Helm
StorageStrategy
>
(
"Local
Helm
StorageStrategy"
);
Local
Matrix
StorageStrategy
storageStrategy
=
m_expList
.
lock
()
->
GetSession
()
->
GetSolverInfoAsEnum
<
Local
Matrix
StorageStrategy
>
(
"Local
Matrix
StorageStrategy"
);
size_t
storageSize
=
0
;
int
nBlk
=
m_schurCompl
->
GetNumberOfBlockRows
();
...
...
library/MultiRegions/GlobalLinSysIterativeStaticCond.h
View file @
6ba8680f
...
...
@@ -49,13 +49,13 @@ namespace Nektar
typedef
boost
::
shared_ptr
<
GlobalLinSysIterativeStaticCond
>
GlobalLinSysIterativeStaticCondSharedPtr
;
enum
Local
Helm
StorageStrategy
enum
Local
Matrix
StorageStrategy
{
eContiguous
,
eNonContiguous
,
};
const
char
*
const
Local
Helm
StorageStrategyMap
[]
=
const
char
*
const
Local
Matrix
StorageStrategyMap
[]
=
{
"Contiguous"
,
"Non-contiguous"
,
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment