Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90518054
aka_circular_array_inline_impl.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
Sat, Nov 2, 10:05
Size
3 KB
Mime Type
text/x-c++
Expires
Mon, Nov 4, 10:05 (2 d)
Engine
blob
Format
Raw Data
Handle
22071541
Attached To
rAKA akantu
aka_circular_array_inline_impl.hh
View Options
/**
* Copyright (©) 2011-2023 EPFL (Ecole Polytechnique Fédérale de Lausanne)
* Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides)
*
* This file is part of Akantu
*
* 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/>.
*/
/* -------------------------------------------------------------------------- */
#include "aka_circular_array.hh"
/* -------------------------------------------------------------------------- */
namespace
akantu
{
/* -------------------------------------------------------------------------- */
template
<
class
T
>
inline
typename
CircularArray
<
T
>::
reference
CircularArray
<
T
>::
operator
()(
Idx
i
,
Idx
j
)
{
AKANTU_DEBUG_ASSERT
(
end_position
!=
start_position
,
"The array
\"
"
<<
this
->
id
<<
"
\"
is empty"
);
AKANTU_DEBUG_ASSERT
(
(
i
<
(
end_position
-
start_position
+
this
->
allocated_size
)
%
this
->
allocated_size
+
1
)
&&
(
j
<
this
->
nb_component
),
"The value at position ["
<<
i
<<
","
<<
j
<<
"] is out of range in array
\"
"
<<
this
->
id
<<
"
\"
"
);
return
this
->
values
[((
i
+
start_position
)
%
this
->
allocated_size
)
*
this
->
nb_component
+
j
];
}
/* -------------------------------------------------------------------------- */
template
<
typename
T
>
inline
typename
CircularArray
<
T
>::
const_reference
CircularArray
<
T
>::
operator
()(
Idx
i
,
Idx
j
)
const
{
AKANTU_DEBUG_ASSERT
(
end_position
!=
start_position
,
"The array
\"
"
<<
this
->
id
<<
"
\"
is empty"
);
AKANTU_DEBUG_ASSERT
(
(
i
<
(
end_position
-
start_position
+
this
->
allocated_size
)
%
this
->
allocated_size
+
1
)
&&
(
j
<
this
->
nb_component
),
"The value at position ["
<<
i
<<
","
<<
j
<<
"] is out of range in array
\"
"
<<
this
->
id
<<
"
\"
"
);
return
this
->
values
[((
i
+
start_position
)
%
this
->
allocated_size
)
*
this
->
nb_component
+
j
];
}
/* -------------------------------------------------------------------------- */
template
<
class
T
>
inline
void
CircularArray
<
T
>::
makeStep
()
{
AKANTU_DEBUG_IN
();
start_position
=
(
start_position
+
1
)
%
this
->
allocated_size
;
end_position
=
(
end_position
+
1
)
%
this
->
allocated_size
;
AKANTU_DEBUG_OUT
();
}
/* -------------------------------------------------------------------------- */
template
<
class
T
>
void
CircularArray
<
T
>::
printself
(
std
::
ostream
&
stream
,
int
indent
)
const
{
std
::
string
space
(
AKANTU_INDENT
,
indent
);
stream
<<
space
<<
"CircularArray<"
<<
debug
::
demangle
(
typeid
(
T
).
name
())
<<
"> ["
<<
std
::
endl
;
stream
<<
space
<<
" + start_position : "
<<
this
->
start_position
<<
std
::
endl
;
stream
<<
space
<<
" + end_position : "
<<
this
->
end_position
<<
std
::
endl
;
Array
<
T
>::
printself
(
stream
,
indent
+
1
);
stream
<<
space
<<
"]"
<<
std
::
endl
;
}
}
// namespace akantu
Event Timeline
Log In to Comment