From 3256842ad44d6b622e272538bdeb8934b31f02a5 Mon Sep 17 00:00:00 2001 From: Marek Paśnikowski Date: Sun, 14 Jan 2024 11:23:24 +0100 Subject: Tune the next-interval calculation --- org-fc-algo-tn.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/org-fc-algo-tn.el b/org-fc-algo-tn.el index 903b1b9..ce042e4 100644 --- a/org-fc-algo-tn.el +++ b/org-fc-algo-tn.el @@ -31,8 +31,8 @@ EASE, BOX and INTERVAL are the current parameters of the card." (next-interval (cond (incorrect-at-edge 0) - (incorrect (nth-tn next-box)) - (correct (nth-tn next-box))))) + (incorrect (- (nth-tn box) (nth-tn next-box))) + (correct (- (nth-tn next-box) (nth-tn box)))))) (list next-ease next-box next-interval))) (defun org-fc-algo-tn-initial-review-data (position) -- cgit v1.2.3