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
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
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
Core Modules
dune-common
Commits
8d806f56
Commit
8d806f56
authored
11 years ago
by
Christian Engwer
Browse files
Options
Downloads
Patches
Plain Diff
[lru]
- update documentation - add paranoia check to touch()
parent
61ee2348
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
dune/common/lru.hh
+10
-4
10 additions, 4 deletions
dune/common/lru.hh
with
10 additions
and
4 deletions
dune/common/lru.hh
+
10
−
4
View file @
8d806f56
...
...
@@ -145,7 +145,8 @@ namespace Dune {
/**
* @brief Insert a value into the container
*
* Stores value under key and marks it as most recent.
* Stores value under key and marks it as most recent. If this key
* is already present, the associated data is replaced.
*
* @param key associated with data
* @param data to store
...
...
@@ -180,7 +181,10 @@ namespace Dune {
{
/* query _index for iterator */
iterator
it
=
_index
[
key
];
/* update _data
if
(
it
==
_index
.
end
())
DUNE_THROW
(
Dune
::
RangeError
,
"Failed to touch key "
<<
key
<<
", it is not in the lru container"
);
/* update _data
move it to the front
*/
_data
.
splice
(
_data
.
begin
(),
_data
,
it
);
...
...
@@ -188,7 +192,7 @@ namespace Dune {
}
/**
*
*
@brief retief number of entries in the container
*/
size_type
size
()
const
{
...
...
@@ -196,7 +200,9 @@ namespace Dune {
}
/**
*
* @brief ensure a maximum size of the container
* If new_size is smaller than size the oldest elements are
* dropped. Otherwise nothing happens.
*/
void
resize
(
size_type
new_size
)
{
...
...
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