Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90449366
aka_static_memory_tmpl.hh
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Fri, Nov 1, 19:04
Size
2 KB
Mime Type
text/x-c++
Expires
Sun, Nov 3, 19:04 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
21375498
Attached To
rAKA akantu
aka_static_memory_tmpl.hh
View Options
/**
* @file aka_static_memory_tmpl.hh
*
* @author Nicolas Richart <nicolas.richart@epfl.ch>
*
* @date creation: Thu Jul 15 2010
* @date last modification: Tue Feb 20 2018
*
* @brief template part of the StaticMemory
*
* @section LICENSE
*
* Copyright (©) 2010-2018 EPFL (Ecole Polytechnique Fédérale de Lausanne)
* Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides)
*
* Akantu is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free
* Software Foundation, either version 3 of the License, or (at your option) any
* later version.
*
* Akantu is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
* A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
* details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Akantu. If not, see <http://www.gnu.org/licenses/>.
*
*/
/* -------------------------------------------------------------------------- */
template
<
typename
T
>
Array
<
T
>
&
StaticMemory
::
smalloc
(
const
MemoryID
&
memory_id
,
const
ID
&
name
,
UInt
size
,
UInt
nb_component
)
{
AKANTU_DEBUG_IN
();
MemoryMap
::
iterator
memory_it
;
memory_it
=
memories
.
find
(
memory_id
);
if
(
memory_it
==
memories
.
end
())
{
memories
[
memory_id
]
=
ArrayMap
();
memory_it
=
memories
.
find
(
memory_id
);
}
if
((
memory_it
->
second
).
find
(
name
)
!=
(
memory_it
->
second
).
end
())
{
AKANTU_ERROR
(
"The vector
\"
"
<<
name
<<
"
\"
is already registred in the memory "
<<
memory_id
);
}
auto
*
tmp_vect
=
new
Array
<
T
>
(
size
,
nb_component
,
name
);
(
memory_it
->
second
)[
name
]
=
tmp_vect
;
AKANTU_DEBUG_OUT
();
return
*
tmp_vect
;
}
/* -------------------------------------------------------------------------- */
template
<
typename
T
>
Array
<
T
>
&
StaticMemory
::
smalloc
(
const
MemoryID
&
memory_id
,
const
ID
&
name
,
UInt
size
,
UInt
nb_component
,
const
T
&
init_value
)
{
AKANTU_DEBUG_IN
();
MemoryMap
::
iterator
memory_it
;
memory_it
=
memories
.
find
(
memory_id
);
if
(
memory_it
==
memories
.
end
())
{
memories
[
memory_id
]
=
ArrayMap
();
memory_it
=
memories
.
find
(
memory_id
);
}
if
((
memory_it
->
second
).
find
(
name
)
!=
(
memory_it
->
second
).
end
())
{
AKANTU_ERROR
(
"The vector
\"
"
<<
name
<<
"
\"
is already registred in the memory "
<<
memory_id
);
}
auto
*
tmp_vect
=
new
Array
<
T
>
(
size
,
nb_component
,
init_value
,
name
);
(
memory_it
->
second
)[
name
]
=
tmp_vect
;
AKANTU_DEBUG_OUT
();
return
*
tmp_vect
;
}
/* -------------------------------------------------------------------------- */
Event Timeline
Log In to Comment