-
-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feat/simulator with existing cards and limit #141
Feat/simulator with existing cards and limit #141
Conversation
LGTM.
Do you mean including the changes from this PR into Anki, or do you mean something else? |
Ideally, the feature could be supported by Anki natively. It includes a GUI to configure the simulation and display the result. But it would requires a lot of development. Alternatively, you can just export a API to python. |
And this PR changes the struct learn_limit: usize::MAX,
review_limit: usize::MAX, |
I won't have time to include this in 23.12, but will include it in the release after that. Could you please clarify what learn_limit and review_limit represent? Are they intended to be the daily review and new card limits the user has set, or something else?
If fsrs-rs adds an API that outputs data suitable for rendering into a graph, I can help with integrating the input/graph part, but it will be a while until I have free time to do so. |
We're on the commit prior to open-spaced-repetition/fsrs-rs#141, as that is going to require work that will need to wait until after 23.12
|
Note: When we set |
Will this feature make to the 24.04 release? @dae |
I've logged it on ankitects/anki#3046 |
Due to the change of scheduler, the old simulator add-on becomes inaccurate. I want to provide a native simulator for FSRS.
In this PR, I add two features:
New cards/day
andMaximum reviews/day
like Anki@dae, I know you are busy recently. Do you have a plan to support the native simulator in 2024? I hope my code could be helpful.