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
_prevNotCoincident () {
// iterating backwards from next to prev
let next = this
let prev = this.prev
while (prev && next.coincidents === prev.coincidents) {
next = prev
prev = prev.prev
}
return prev
}
That while loop just spins forever
The text was updated successfully, but these errors were encountered:
These coordinates:
https://gist.github.com/jliebrand/d27791efbe8f3ac05c802220c3bc6409
cause an eternal loop when you try to union them.
That while loop just spins forever
The text was updated successfully, but these errors were encountered: