Is this a bug or the intended behavior? Anki seems to increment the lapse count only for review card.
While this is not relevant for the core logic of the algorithm, I'm trying to reimplement FSRS in EmacsLisp
and I'd like to understand the motivation behind this behavior.
In the
update_state
function at https://github.com/open-spaced-repetition/py-fsrs/blob/main/src/fsrs/models.py#L87 the lapse count of a card is only incremented for cards in thenew
andreview
state.Is this a bug or the intended behavior? Anki seems to increment the lapse count only for
review
card.While this is not relevant for the core logic of the algorithm, I'm trying to reimplement FSRS in EmacsLisp and I'd like to understand the motivation behind this behavior.