Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
H
hpp-statistics
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
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
Humanoid Path Planner
hpp-statistics
Commits
afe18d82
Commit
afe18d82
authored
10 years ago
by
Joseph Mirabel
Committed by
Joseph Mirabel
10 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Add method Statistics::find
parent
7f4e619e
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
include/hpp/statistics/bin.hh
+24
-0
24 additions, 0 deletions
include/hpp/statistics/bin.hh
with
24 additions
and
0 deletions
include/hpp/statistics/bin.hh
+
24
−
0
View file @
afe18d82
...
@@ -115,6 +115,10 @@ namespace hpp {
...
@@ -115,6 +115,10 @@ namespace hpp {
/// already in the set.
/// already in the set.
virtual
T
&
increment
(
const
T
&
bin
);
virtual
T
&
increment
(
const
T
&
bin
);
iterator
find
(
const
T
&
bin
);
template
<
typename
U
>
iterator
find
(
const
U
&
value
);
/// Return an iterator pointing at the beginning of
/// Return an iterator pointing at the beginning of
/// the set of bins.
/// the set of bins.
const_iterator
begin
()
const
const_iterator
begin
()
const
...
@@ -162,6 +166,26 @@ namespace hpp {
...
@@ -162,6 +166,26 @@ namespace hpp {
return
*
it
;
return
*
it
;
}
}
template
<
typename
T
>
typename
Statistics
<
T
>::
iterator
Statistics
<
T
>::
find
(
const
T
&
b
)
{
for
(
iterator
it
=
bins_
.
begin
();
it
!=
bins_
.
end
();
it
++
)
{
if
(
*
it
<
b
)
continue
;
if
(
*
it
==
b
)
return
it
;
break
;
}
return
bins_
.
end
();
}
template
<
typename
T
>
template
<
typename
U
>
typename
Statistics
<
T
>::
iterator
Statistics
<
T
>::
find
(
const
U
&
v
)
{
return
find
(
T
(
v
));
}
template
<
typename
T
>
template
<
typename
T
>
size_t
Statistics
<
T
>::
freq
(
const
T
&
b
)
const
size_t
Statistics
<
T
>::
freq
(
const
T
&
b
)
const
{
{
...
...
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