We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Thanks for you great work! The "is_contain" function used in computing Und_s seems to have an error.
def is_contain(bb1, bb2): xl_1, yl_1, xr_1, yr_1 = bb1 xl_2, yl_2, xr_2, yr_2 = bb2 c1 = xl_1 <= xl_2 c2 = yl_1 <= yl_2 "c3 = xr_2 >= xr_2" c4 = yr_1 >= yr_2 return c1 and c2 and c3 and c4
Shouldn't it be changed to "c3 = xr_1 >= xr_2" ?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Thanks for you great work!
The "is_contain" function used in computing Und_s seems to have an error.
def is_contain(bb1, bb2):
xl_1, yl_1, xr_1, yr_1 = bb1
xl_2, yl_2, xr_2, yr_2 = bb2
c1 = xl_1 <= xl_2
c2 = yl_1 <= yl_2
"c3 = xr_2 >= xr_2"
c4 = yr_1 >= yr_2
return c1 and c2 and c3 and c4
Shouldn't it be changed to "c3 = xr_1 >= xr_2" ?
The text was updated successfully, but these errors were encountered: