-
-
Notifications
You must be signed in to change notification settings - Fork 129
Open
Description
When cycling through instances it often occurs that we land on an instance that has already been visited. This is a problem because it is very likely that the instance was not working (otherwise we would have stopped there).
My proposal is to improve randomness by temporarily removing instances that have already been visited:
- [X, Y, Z, H, T]: H has been chosen, let's remove it so if the user doesn't like it, he's not likely to return to it
- [X, Y, Z, T]: Z has been chosen, let's remove it so if the user doesn't like it, he's not likely to return to it
- [Y, Z, T]: X has been chosen, let's remove it so if the user doesn't like it, he's not likely to return to it
- ...
- []
- [X, Y, Z, H, T]
- ...
At each iteration, instances already visited by the user are removed. When the array of instances becomes empty, it is repopulated and we start over.
Metadata
Metadata
Assignees
Labels
No labels