Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Tor
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
Container Registry
Model registry
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
The Tor Project
Core
Tor
Commits
aecc354e
Commit
aecc354e
authored
10 years ago
by
David Goulet
Committed by
teor
9 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Test: remove edge cases that assert in laplace test
Signed-off-by:
David Goulet
<
dgoulet@ev0ke.net
>
parent
09cac243
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
src/test/test_util.c
+0
-87
0 additions, 87 deletions
src/test/test_util.c
with
0 additions
and
87 deletions
src/test/test_util.c
+
0
−
87
View file @
aecc354e
...
...
@@ -4178,29 +4178,6 @@ test_util_laplace(void *arg)
tt_assert
((
-
35
+
INT64_MAX
)
==
add_laplace_noise
(
INT64_MAX
,
min_dbl_error
,
noscale_df
,
noscale_eps
));
/* ... even when scaled? */
tt_assert
(
INT64_MIN
==
add_laplace_noise
(
0
,
min_dbl_error
,
INT64_MIN
,
-
35
));
tt_assert
(
INT64_MIN
==
add_laplace_noise
(
0
,
min_dbl_error
,
INT64_MIN
,
-
34
));
tt_assert
(
INT64_MAX
==
add_laplace_noise
(
0
,
min_dbl_error
,
INT64_MIN
,
1
));
tt_assert
((
INT64_MIN
+
INT64_MAX
)
==
add_laplace_noise
(
INT64_MIN
,
min_dbl_error
,
INT64_MIN
,
1
));
tt_assert
(
INT64_MAX
==
add_laplace_noise
(
INT64_MAX
,
min_dbl_error
,
INT64_MIN
,
1
));
tt_assert
(
INT64_MAX
==
add_laplace_noise
(
0
,
min_dbl_error
,
INT64_MAX
,
-
35
));
tt_assert
(
INT64_MAX
==
add_laplace_noise
(
0
,
min_dbl_error
,
INT64_MAX
,
-
34
));
tt_assert
(
INT64_MIN
==
add_laplace_noise
(
0
,
min_dbl_error
,
INT64_MAX
,
1
));
...
...
@@ -4244,81 +4221,17 @@ test_util_laplace(void *arg)
tt_assert
(
INT64_MAX
==
add_laplace_noise
(
INT64_MAX
,
max_dbl_lt_one
,
delta_f
,
epsilon
));
tt_assert
(
INT64_MAX
==
add_laplace_noise
(
0
,
max_dbl_lt_one
,
INT64_MAX
,
35
));
tt_assert
(
INT64_MAX
==
add_laplace_noise
(
0
,
max_dbl_lt_one
,
INT64_MAX
,
34
));
tt_assert
((
INT64_MIN
+
INT64_MAX
)
==
add_laplace_noise
(
INT64_MIN
,
max_dbl_lt_one
,
INT64_MAX
,
1
));
tt_assert
(
INT64_MAX
==
add_laplace_noise
(
INT64_MAX
,
max_dbl_lt_one
,
INT64_MAX
,
1
));
tt_assert
((
INT64_MAX
+
INT64_MIN
)
==
add_laplace_noise
(
INT64_MAX
,
max_dbl_lt_one
,
INT64_MIN
,
1
));
tt_assert
(
INT64_MIN
==
add_laplace_noise
(
INT64_MIN
,
max_dbl_lt_one
,
INT64_MIN
,
1
));
/* does it play nice with INT64_MIN? */
tt_assert
((
INT64_MIN
+
35
)
==
add_laplace_noise
(
INT64_MIN
,
max_dbl_lt_one
,
noscale_df
,
noscale_eps
));
/* Test extreme values of b = delta_f / epsilon
* >>> laplace.ppf([0.5], loc = 0, scale = 1)
* array([0. ])
*/
/* Make sure edge cases don't depend on architecture,
* optimisation level, or other compiler flags.
* XXXX Are these edge cases important enough to make consistent? */
/* b = positive zero, p yields positive zero */
tt_assert
(
0
.
0
==
add_laplace_noise
(
0
.
0
,
0
.
5
,
0
.
0
,
1
.
0
))
/* b = negative zero, p yields positive zero */
tt_assert
(
0
.
0
==
add_laplace_noise
(
0
.
0
,
0
.
5
,
0
.
0
,
-
1
.
0
))
/* b = positive infinity, p yields positive zero, result is -NaN -> -Inf */
tt_assert
(
INT64_MIN
==
add_laplace_noise
(
0
.
0
,
0
.
5
,
1
.
0
,
0
.
0
))
/* b = negative infinity, p yields positive zero, result is -NaN -> -Inf */
tt_assert
(
INT64_MIN
==
add_laplace_noise
(
0
.
0
,
0
.
5
,
-
1
.
0
,
0
.
0
))
/* b = positive NaN (rounded to -Inf), p yields positive zero,
* result is -NaN -> -Inf */
tt_assert
(
INT64_MIN
==
add_laplace_noise
(
0
.
0
,
0
.
5
,
-
0
.
0
,
-
0
.
0
))
/* b = negative NaN (rounded to -Inf), p yields positive zero,
* result is -NaN -> -Inf*/
tt_assert
(
INT64_MIN
==
add_laplace_noise
(
0
.
0
,
0
.
5
,
-
0
.
0
,
0
.
0
))
/* b = positive zero, p yields negative infinity, result is -NaN -> -Inf */
tt_assert
(
INT64_MIN
==
add_laplace_noise
(
0
.
0
,
0
.
0
,
0
.
0
,
1
.
0
))
/* b = negative zero, p yields negative infinity, result is -NaN -> -Inf */
tt_assert
(
INT64_MIN
==
add_laplace_noise
(
0
.
0
,
0
.
0
,
0
.
0
,
-
1
.
0
))
/* b = positive infinity, p yields negative infinity */
tt_assert
(
INT64_MIN
==
add_laplace_noise
(
0
.
0
,
0
.
0
,
1
.
0
,
0
.
0
))
/* b = negative infinity, p yields negative infinity */
tt_assert
(
INT64_MAX
==
add_laplace_noise
(
0
.
0
,
0
.
0
,
-
1
.
0
,
0
.
0
))
/* b = positive NaN (rounded to -Inf), p yields negative infinity,
* result is -NaN -> -Inf */
tt_assert
(
INT64_MIN
==
add_laplace_noise
(
0
.
0
,
0
.
0
,
-
0
.
0
,
-
0
.
0
))
/* b = negative NaN (rounded to -Inf), p yields negative infinity,
* result is NaN -> Inf */
tt_assert
(
INT64_MAX
==
add_laplace_noise
(
0
.
0
,
0
.
0
,
-
0
.
0
,
0
.
0
))
done:
;
}
...
...
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