You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In Python2.x, the division operator, /, computes the floor division if both arguments are ints. This happens when computing the fill and size similarities. Most likely this is not the behaviour one expects, as the two functions, _sim_fill and _sim_size, return mostly the same value, 1.0.
In Python2.x, the division operator,
/
, computes the floor division if both arguments areint
s. This happens when computing the fill and size similarities. Most likely this is not the behaviour one expects, as the two functions,_sim_fill
and_sim_size
, return mostly the same value,1.0
.The same issue appears in the example as well.
The text was updated successfully, but these errors were encountered: