Improve estimation algorithm #6
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
At the moment estimation is really simple.
(int(solver.iter) - int(solver.counter)) / int(rate)
This can be improve by taking the average over time instead of whatever the current rate is and throw it against the progress as it is now.
Take the rate:
Store it in a slice:
Create an average of the rates (pseudo code):
Then do the prediction:
🤔 Should give it some thought.
The estimator works, but it turns out the loop is borked. Working on that.
Implemented with
26b78420a2