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
I don't entirely follow the code at the moment but if min(pct) always decreases monotonically then one can use a binary search to reduce the number of calculations. This will work in O(log n) time instead of O(n), on average.
The text was updated successfully, but these errors were encountered:
The while loop in simplify.R takes a long time with large data sets. It seems to iterate from one end of the list to close to the minimum threshold.
rmaxent/R/simplify.R
Line 162 in 08d1103
I don't entirely follow the code at the moment but if
min(pct)
always decreases monotonically then one can use a binary search to reduce the number of calculations. This will work inO(log n)
time instead ofO(n)
, on average.The text was updated successfully, but these errors were encountered: