Skip to content

Commit

Permalink
Be less strict with PageRank for now
Browse files Browse the repository at this point in the history
  • Loading branch information
dustalov committed Jul 13, 2024
1 parent 0a86737 commit ee0c49b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions python/evalica/test_evalica.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,10 +128,10 @@ def test_newman(example: Example, v_init: float) -> None:

@given(
example=elements(),
initial=st.floats(0, 1000),
base=st.floats(0, 1000),
scale=st.floats(0, 1000),
k=st.floats(0, 1000),
initial=st.floats(0., 1000.),
base=st.floats(0., 1000.),
scale=st.floats(0., 1000.),
k=st.floats(0., 1000.),
)
def test_elo(
example: Example,
Expand Down 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),
damping=st.floats(0., 1., exclude_min=True),
win_weight=st.floats(0., 10., exclude_min=True),
tie_weight=st.floats(0., 10.),
)
Expand Down

0 comments on commit ee0c49b

Please sign in to comment.