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
cf40524e
Commit
cf40524e
authored
9 years ago
by
Ansgar Burchardt
Browse files
Options
Downloads
Patches
Plain Diff
documentation: binary search has complexity log(N), not N log(N)
parent
bf023947
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/parallel/indexset.hh
+6
-6
6 additions, 6 deletions
dune/common/parallel/indexset.hh
with
6 additions
and
6 deletions
dune/common/parallel/indexset.hh
+
6
−
6
View file @
cf40524e
...
...
@@ -374,7 +374,7 @@ namespace Dune
* @brief Find the index pair with a specific global id.
*
* This starts a binary search for the entry and therefore has complexity
*
N
log(N).
* log(N).
* @param global The globally unique id of the pair.
* @return The pair of indices for the id.
* @warning If the global index is not in the set a wrong or even a
...
...
@@ -387,7 +387,7 @@ namespace Dune
* @brief Find the index pair with a specific global id.
*
* This starts a binary search for the entry and therefore has complexity
*
N
log(N).
* log(N).
* @param global The globally unique id of the pair.
* @return The pair of indices for the id.
* @exception RangeError Thrown if the global id is not known.
...
...
@@ -398,8 +398,8 @@ namespace Dune
/**
* @brief Find the index pair with a specific global id.
*
* This starts a binary search for the entry and therefor has complexity
*
N
log(N).
* This starts a binary search for the entry and therefor
e
has complexity
* log(N).
* @param global The globally unique id of the pair.
* @return The pair of indices for the id.
* @warning If the global index is not in the set a wrong or even a
...
...
@@ -412,7 +412,7 @@ namespace Dune
* @brief Find the index pair with a specific global id.
*
* This starts a binary search for the entry and therefore has complexity
*
N
log(N).
* log(N).
* @param global The globally unique id of the pair.
* @return The pair of indices for the id.
* @exception RangeError Thrown if the global id is not known.
...
...
@@ -551,7 +551,7 @@ namespace Dune
* @brief Find the index pair with a specific global id.
*
* This starts a binary search for the entry and therefore has complexity
*
N
log(N). This method is forwarded to the underlying index set.
* log(N). This method is forwarded to the underlying index set.
* @param global The globally unique id of the pair.
* @return The pair of indices for the id.
* @exception RangeError Thrown if the global id is not known.
...
...
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