diff options
author | Thanos Apollo <[email protected]> | 2024-01-15 10:29:16 +0200 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2024-01-15 10:50:40 +0200 |
commit | 44c536d5ad6c297733f6c4c467f781235dc20835 (patch) | |
tree | 0cb18ef0bcc0cc347d76c49af7dcb7d6d46a390a /gnosis.el | |
parent | 010d8e688de2199ab6e10b03de64e75b2c0521d9 (diff) |
gnosis-review--algorithm: Use total successful reviews
Previous implementation was using total successful reviews in a row
Diffstat (limited to 'gnosis.el')
-rw-r--r-- | gnosis.el | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -850,10 +850,10 @@ SUCCESS is a binary value, 1 = success, 0 = failure. Returns a list of the form ((yyyy mm dd) ef)." (let ((ff gnosis-algorithm-ff) (ef (nth 2 (gnosis-get 'ef 'review `(= id ,id)))) - (c-success (gnosis-get 'c-success 'review-log `(= id ,id)))) + (t-success (gnosis-get 't-success 'review-log `(= id ,id)))) (gnosis-algorithm-next-interval (gnosis-review--get-offset id) (gnosis-get 'n 'review-log `(= id ,id)) - ef success ff c-success))) + ef success ff t-success))) (defun gnosis-review-due-notes--with-tags () "Return a list of due note tags." |