> a subsequent repetition gap of 5 days seems a little extreme. I
> understand that the algorithm is not optimised for this kind of usage
That's correct :-)
> I'm just trying to understand how it is going to work in this
> situation so that I can best plan my SRS "recovery" strategy!
Here's the relevant code:
if new_grade == 2 or new_grade == 3:
if actual_interval <= scheduled_interval:
new_interval = actual_interval * item.easiness
else:
new_interval = scheduled_interval
if new_grade == 4:
new_interval = actual_interval * item.easiness
if new_grade == 5:
if actual_interval < scheduled_interval:
new_interval = scheduled_interval # Avoid spacing.
else:
new_interval = actual_interval * item.easiness
--
You received this message because you are subscribed to the Google Groups
"mnemosyne-proj-users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/mnemosyne-proj-users?hl=en.