Skip to content

Commit

Permalink
Exclude min and max damping factor in PageRank test
Browse files Browse the repository at this point in the history
  • Loading branch information
dustalov committed Jul 13, 2024
1 parent ee0c49b commit 432a614
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/evalica/test_evalica.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ def test_eigen(example: Example, win_weight: float, tie_weight: float) -> None:

@given(
example=elements(),
damping=st.floats(0., 1., exclude_min=True),
damping=st.floats(0., 1., exclude_min=True, exclude_max=True),
win_weight=st.floats(0., 10., exclude_min=True),
tie_weight=st.floats(0., 10.),
)
Expand Down

0 comments on commit 432a614

Please sign in to comment.