On Saturday 06 December 2008 08:45:38 duncan wrote: > On Dec 6, 1:36 am, Peter Bienstman <[EMAIL PROTECTED]> wrote: > > On Friday 05 December 2008 23:22:25 duncan wrote: > > > By the way, I just finished my daily scheduled reps, in which there > > > were again a fair number of lapses. And again Mnemosyne is allowing > > > the number of cards graded 1 in my hand to rise above 21. > > > > BTW, the option is about limiting the grade *zero* cards in your hand. No > > restrictions about grade 1 cards is in place. > > Then your code has a bug, I think. It will not add cards that have > never been seen to the queue as long as there are more than 9 <2 cards > that have been seen available in the unlearned pile-
(I wrote this code a while ago, so it took me some time to reconstruct my line of reasoning at the time.) You are right that there is an extra limit imposed on the size of the queue, e.g. by making sure that you don't focus on more than 10 lapsed cards at the same time. There is also a limit of 10 on the unlearned cards as you have noticed. I'd like to keep the first limit as it is, as you will get through your lapsed cards eventually, and they have priority over other cards anyway. About the second limit: if I remove it, it's possible to have an arbitrary large number of cards in your hand at one time, and I'm not sure if that's a good idea. Making it configurable through the GUI is not an option as it's way too complicated to explain. Remains the option of having it configurable through the text config file (also not my favourite), or changing the number of 10 to something like 2*max_grade_0_cards. I haven't decided yet which option is best, and I'm open to any feedback on the issue. Cheers, Peter --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
