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
93ac406d
Commit
93ac406d
authored
15 years ago
by
Christian Engwer
Browse files
Options
Downloads
Patches
Plain Diff
implorve documentation
[[Imported from SVN: r5594]]
parent
c5657b08
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/float_cmp.hh
+12
-0
12 additions, 0 deletions
common/float_cmp.hh
with
12 additions
and
0 deletions
common/float_cmp.hh
+
12
−
0
View file @
93ac406d
...
...
@@ -144,6 +144,8 @@ namespace Dune {
/**
* @tparam T Type of the values to compare
* @tparam style How to compare. This defaults to defaultCmpStyle.
* @param first left operand of equals operation
* @param second right operand of equals operation
* @param epsilon The epsilon to use in the comparison
*/
template
<
class
T
,
CmpStyle
style
/*= defaultCmpStyle*/
>
...
...
@@ -154,6 +156,8 @@ namespace Dune {
/**
* @tparam T Type of the values to compare
* @tparam style How to compare. This defaults to defaultCmpStyle.
* @param first left operand of not-equal operation
* @param second right operand of not-equal operation
* @param epsilon The epsilon to use in the comparison
* @return !eq(first, second, epsilon)
*/
...
...
@@ -165,6 +169,8 @@ namespace Dune {
/**
* @tparam T Type of the values to compare
* @tparam style How to compare. This defaults to defaultCmpStyle.
* @param first left operand of greater-than operation
* @param second right operand of greater-than operation
* @param epsilon The epsilon to use in the comparison
* @return ne(first, second, epsilon) && first > second
*
...
...
@@ -179,6 +185,8 @@ namespace Dune {
/**
* @tparam T Type of the values to compare
* @tparam style How to compare. This defaults to defaultCmpStyle.
* @param first left operand of less-than operation
* @param second right operand of less-than operation
* @param epsilon The epsilon to use in the comparison
* @return ne(first, second, epsilon) && first < second
*
...
...
@@ -193,6 +201,8 @@ namespace Dune {
/**
* @tparam T Type of the values to compare
* @tparam style How to compare. This defaults to defaultCmpStyle.
* @param first left operand of greater-or-equals operation
* @param second right operand of greater-or-equals operation
* @param epsilon The epsilon to use in the comparison
* @return eq(first, second, epsilon) || first > second
*
...
...
@@ -207,6 +217,8 @@ namespace Dune {
/**
* @tparam T Type of the values to compare
* @tparam style How to compare. This defaults to defaultCmpStyle.
* @param first left operand of less-or-equals operation
* @param second right operand of less-or-equals operation
* @param epsilon The epsilon to use in the comparison
* @return eq(first, second) || first > second
*
...
...
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