Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-common
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
Show more breadcrumbs
Timo Koch
dune-common
Commits
b401c85b
Commit
b401c85b
authored
19 years ago
by
Markus Blatt
Browse files
Options
Downloads
Patches
Plain Diff
removed bug in operator[]() const that I already removed three days
before for the mutable function. [[Imported from SVN: r1895]]
parent
0dc138d6
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
common/arraylist.hh
+41
-41
41 additions, 41 deletions
common/arraylist.hh
with
41 additions
and
41 deletions
common/arraylist.hh
+
41
−
41
View file @
b401c85b
...
...
@@ -110,26 +110,26 @@ namespace Dune
* @param i The index of the position.
* @return The element at that position.
*/
inline
T
&
operator
[](
in
t
i
);
inline
T
&
operator
[](
size_
t
i
);
/**
* @brief Get the element at specific position.
* @param i The index of the position.
* @return The element at that position.
*/
inline
const
T
&
operator
[](
in
t
i
)
const
;
inline
const
T
&
operator
[](
size_
t
i
)
const
;
/**
* @brief Get the number of elements in the lisz.
* @return The number of elements.
*/
inline
in
t
size
()
const
;
inline
size_
t
size
()
const
;
/**
* @brief Get the current capacity of the list.
* @return The capacity.
*/
inline
in
t
capacity
()
const
;
inline
size_
t
capacity
()
const
;
/**
* @brief Purge the list.
...
...
@@ -167,11 +167,11 @@ namespace Dune
std
::
vector
<
SmartPointer
<
FixedArray
<
MemberType
,
chunkSize_
>
>
,
SmartPointerAllocator
>
chunks_
;
/** @brief The current data capacity. */
in
t
capacity_
;
size_
t
capacity_
;
/** @brief The current number of elements in our data structure. */
in
t
size_
;
size_
t
size_
;
/** @brief The index of the first entry. */
in
t
start_
;
size_
t
start_
;
/**
* @brief Get the element at specific position.
*
...
...
@@ -180,7 +180,7 @@ namespace Dune
* @param i The index of the position.
* @return The element at that position.
*/
inline
T
&
elementAt
(
in
t
i
);
inline
T
&
elementAt
(
size_
t
i
);
/**
* @brief Get the element at specific position.
...
...
@@ -190,7 +190,7 @@ namespace Dune
* @param i The index of the position.
* @return The element at that position.
*/
inline
const
T
&
elementAt
(
in
t
i
)
const
;
inline
const
T
&
elementAt
(
size_
t
i
)
const
;
};
...
...
@@ -249,7 +249,7 @@ namespace Dune
* @brief Get the value of the list at an arbitrary position.
* @return The value at that postion.
*/
inline
MemberType
&
elementAt
(
in
t
i
)
const
;
inline
MemberType
&
elementAt
(
size_
t
i
)
const
;
/**
* @brief Access the element at the current position.
...
...
@@ -271,13 +271,13 @@ namespace Dune
inline
void
eraseToHere
();
/** \todo Please doc me! */
inline
in
t
position
(){
return
position_
;}
inline
size_
t
position
(){
return
position_
;}
/** \todo Please doc me! */
inline
void
advance
(
in
t
n
);
inline
void
advance
(
size_
t
n
);
/** \todo Please doc me! */
inline
in
t
distanceTo
(
const
ArrayListIterator
<
MemberType
,
N
,
A
>&
other
)
const
;
inline
size_
t
distanceTo
(
const
ArrayListIterator
<
MemberType
,
N
,
A
>&
other
)
const
;
/** \todo Please doc me! */
inline
ArrayListIterator
<
MemberType
,
N
,
A
>&
operator
=
(
const
ArrayListIterator
<
MemberType
,
N
,
A
>&
other
);
...
...
@@ -292,12 +292,12 @@ namespace Dune
* @param list The list we are an iterator for.
* @param position The initial position of the iterator.
*/
inline
ArrayListIterator
(
ArrayList
<
T
,
N
,
A
>&
arrayList
,
in
t
position
);
inline
ArrayListIterator
(
ArrayList
<
T
,
N
,
A
>&
arrayList
,
size_
t
position
);
/**
* @brief The current postion.
*/
in
t
position_
;
size_
t
position_
;
/**
* @brief The list we are an iterator for.
*/
...
...
@@ -350,16 +350,16 @@ namespace Dune
inline
void
decrement
();
/** \todo Please doc me! */
inline
void
advance
(
in
t
n
);
inline
void
advance
(
size_
t
n
);
/** \todo Please doc me! */
inline
in
t
distanceTo
(
const
ConstArrayListIterator
<
MemberType
,
N
,
A
>&
other
)
const
;
inline
size_
t
distanceTo
(
const
ConstArrayListIterator
<
MemberType
,
N
,
A
>&
other
)
const
;
/**
* @brief Get the value of the list at an arbitrary position.
* @return The value at that postion.
*/
inline
const
MemberType
&
elementAt
(
in
t
i
)
const
;
inline
const
MemberType
&
elementAt
(
size_
t
i
)
const
;
/**
* @brief Access the element at the current position.
...
...
@@ -381,12 +381,12 @@ namespace Dune
* @param list The list we are an iterator for.
* @param position The initial position of the iterator.
*/
inline
ConstArrayListIterator
(
const
ArrayList
<
T
,
N
,
A
>&
arrayList
,
in
t
position
);
inline
ConstArrayListIterator
(
const
ArrayList
<
T
,
N
,
A
>&
arrayList
,
size_
t
position
);
/**
* @brief The current postion.
*/
in
t
position_
;
size_
t
position_
;
/**
* @brief The list we are an iterator for.
*/
...
...
@@ -410,13 +410,13 @@ namespace Dune
}
template
<
class
T
,
int
N
,
class
A
>
in
t
ArrayList
<
T
,
N
,
A
>::
size
()
const
size_
t
ArrayList
<
T
,
N
,
A
>::
size
()
const
{
return
size_
;
}
template
<
class
T
,
int
N
,
class
A
>
in
t
ArrayList
<
T
,
N
,
A
>::
capacity
()
const
size_
t
ArrayList
<
T
,
N
,
A
>::
capacity
()
const
{
return
capacity_
;
}
...
...
@@ -424,7 +424,7 @@ namespace Dune
template
<
class
T
,
int
N
,
class
A
>
void
ArrayList
<
T
,
N
,
A
>::
push_back
(
const
T
&
entry
)
{
in
t
index
=
start_
+
size_
;
size_
t
index
=
start_
+
size_
;
if
(
index
==
capacity_
)
{
chunks_
.
push_back
(
SmartPointer
<
FixedArray
<
MemberType
,
chunkSize_
>
>
());
...
...
@@ -435,27 +435,27 @@ namespace Dune
}
template
<
class
T
,
int
N
,
class
A
>
T
&
ArrayList
<
T
,
N
,
A
>::
operator
[](
in
t
i
)
T
&
ArrayList
<
T
,
N
,
A
>::
operator
[](
size_
t
i
)
{
return
elementAt
(
start_
+
i
);
}
template
<
class
T
,
int
N
,
class
A
>
const
T
&
ArrayList
<
T
,
N
,
A
>::
operator
[](
in
t
i
)
const
const
T
&
ArrayList
<
T
,
N
,
A
>::
operator
[](
size_
t
i
)
const
{
return
elementAt
(
start_
+
i
);
}
template
<
class
T
,
int
N
,
class
A
>
T
&
ArrayList
<
T
,
N
,
A
>::
elementAt
(
in
t
i
)
T
&
ArrayList
<
T
,
N
,
A
>::
elementAt
(
size_
t
i
)
{
return
chunks_
[
i
/
chunkSize_
]
->
operator
[](
i
%
chunkSize_
);
}
template
<
class
T
,
int
N
,
class
A
>
const
T
&
ArrayList
<
T
,
N
,
A
>::
elementAt
(
in
t
i
)
const
const
T
&
ArrayList
<
T
,
N
,
A
>::
elementAt
(
size_
t
i
)
const
{
return
chunks_
[
i
/
chunkSize_
]
->
operator
[](
i
%
chunkSize_
);
}
...
...
@@ -488,10 +488,10 @@ namespace Dune
void
ArrayList
<
T
,
N
,
A
>::
purge
()
{
// Distance to copy to the left.
in
t
distance
=
start_
/
chunkSize_
;
size_
t
distance
=
start_
/
chunkSize_
;
if
(
distance
>
0
)
{
// Number of chunks with entries in it;
in
t
chunks
=
((
start_
%
chunkSize_
+
size_
)
/
chunkSize_
);
size_
t
chunks
=
((
start_
%
chunkSize_
+
size_
)
/
chunkSize_
);
typedef
typename
std
::
vector
<
SmartPointer
<
FixedArray
<
MemberType
,
chunkSize_
>
>
>::
iterator
iterator
;
...
...
@@ -507,13 +507,13 @@ namespace Dune
}
template
<
class
T
,
int
N
,
class
A
>
void
ArrayListIterator
<
T
,
N
,
A
>::
advance
(
in
t
i
)
void
ArrayListIterator
<
T
,
N
,
A
>::
advance
(
size_
t
i
)
{
position_
+=
i
;
}
template
<
class
T
,
int
N
,
class
A
>
void
ConstArrayListIterator
<
T
,
N
,
A
>::
advance
(
in
t
i
)
void
ConstArrayListIterator
<
T
,
N
,
A
>::
advance
(
size_
t
i
)
{
position_
+=
i
;
}
...
...
@@ -570,14 +570,14 @@ namespace Dune
}
template
<
class
T
,
int
N
,
class
A
>
T
&
ArrayListIterator
<
T
,
N
,
A
>::
elementAt
(
in
t
i
)
const
T
&
ArrayListIterator
<
T
,
N
,
A
>::
elementAt
(
size_
t
i
)
const
{
i
+=
position_
;
return
list_
->
elementAt
(
i
+
position_
);
}
template
<
class
T
,
int
N
,
class
A
>
const
T
&
ConstArrayListIterator
<
T
,
N
,
A
>::
elementAt
(
in
t
i
)
const
const
T
&
ConstArrayListIterator
<
T
,
N
,
A
>::
elementAt
(
size_
t
i
)
const
{
return
list_
->
elementAt
(
i
+
position_
);
}
...
...
@@ -595,7 +595,7 @@ namespace Dune
}
template
<
class
T
,
int
N
,
class
A
>
in
t
ArrayListIterator
<
T
,
N
,
A
>::
distanceTo
(
const
ArrayListIterator
<
T
,
N
,
A
>&
other
)
const
size_
t
ArrayListIterator
<
T
,
N
,
A
>::
distanceTo
(
const
ArrayListIterator
<
T
,
N
,
A
>&
other
)
const
{
// Makes only sense if we reference a common list
assert
(
list_
==
(
other
.
list_
));
...
...
@@ -603,7 +603,7 @@ namespace Dune
}
template
<
class
T
,
int
N
,
class
A
>
in
t
ConstArrayListIterator
<
T
,
N
,
A
>::
distanceTo
(
const
ConstArrayListIterator
<
T
,
N
,
A
>&
other
)
const
size_
t
ConstArrayListIterator
<
T
,
N
,
A
>::
distanceTo
(
const
ConstArrayListIterator
<
T
,
N
,
A
>&
other
)
const
{
// Makes only sense if we reference a common list
assert
(
list_
==
(
other
.
list_
));
...
...
@@ -631,14 +631,14 @@ namespace Dune
{
list_
->
size_
-=
++
position_
-
list_
->
start_
;
// chunk number of the new position.
in
t
posChunkStart
=
position_
/
chunkSize_
;
size_
t
posChunkStart
=
position_
/
chunkSize_
;
// number of chunks to deallocate
in
t
chunks
=
(
position_
-
list_
->
start_
+
list_
->
start_
%
chunkSize_
)
/
chunkSize_
;
size_
t
chunks
=
(
position_
-
list_
->
start_
+
list_
->
start_
%
chunkSize_
)
/
chunkSize_
;
list_
->
start_
=
position_
;
// Deallocate memory not needed any more.
for
(
in
t
chunk
=
0
;
chunk
<
chunks
;
chunk
++
)
for
(
size_
t
chunk
=
0
;
chunk
<
chunks
;
chunk
++
)
list_
->
chunks_
[
--
posChunkStart
].
deallocate
();
// As new entries only get append the capacity shrinks
...
...
@@ -646,13 +646,13 @@ namespace Dune
}
template
<
class
T
,
int
N
,
class
A
>
ArrayListIterator
<
T
,
N
,
A
>::
ArrayListIterator
(
ArrayList
<
T
,
N
,
A
>&
arrayList
,
in
t
position
)
ArrayListIterator
<
T
,
N
,
A
>::
ArrayListIterator
(
ArrayList
<
T
,
N
,
A
>&
arrayList
,
size_
t
position
)
:
position_
(
position
),
list_
(
&
arrayList
)
{}
template
<
class
T
,
int
N
,
class
A
>
ConstArrayListIterator
<
T
,
N
,
A
>::
ConstArrayListIterator
(
const
ArrayList
<
T
,
N
,
A
>&
arrayList
,
in
t
position
)
ConstArrayListIterator
<
T
,
N
,
A
>::
ConstArrayListIterator
(
const
ArrayList
<
T
,
N
,
A
>&
arrayList
,
size_
t
position
)
:
position_
(
position
),
list_
(
&
arrayList
)
{}
...
...
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