summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.org7
-rw-r--r--org-fc.el2
2 files changed, 6 insertions, 3 deletions
diff --git a/README.org b/README.org
index 3d02ec6..5b6056d 100644
--- a/README.org
+++ b/README.org
@@ -289,7 +289,7 @@ upcoming changes.
In case a update to the org sources is needed, I'll add a changelog
entry with updating instructions.
-*** [2020-04-21 Tue]
+*** [2020-04-29 Wed]
Implemented a new version of the spacing algorithm (SM2) that's used
by org-fc.
@@ -304,7 +304,10 @@ In the new version (~'sm2-v2~), the interval is always multiplied by a
factor of 1.2, similar to the version of SM2 used by Anki.
~org-fc-algorithm~ can be used to set which version of the
-algorithm should be used, defaulting to ~'sm2-v2~.
+algorithm should be used, defaulting to ~'sm2-v1~.
+
+Once I have evaluated the performance of the new algorithm,
+the default version will change to ~'sm2-v2~.
*** [2020-04-12 Sun]
**** Added
- =text-input= card type
diff --git a/org-fc.el b/org-fc.el
index 70f1a46..bf11489 100644
--- a/org-fc.el
+++ b/org-fc.el
@@ -131,7 +131,7 @@ Used to generate absolute paths to the awk scripts.")
;;;; Spacing Parameters
-(defcustom org-fc-algorithm 'sm2-v2
+(defcustom org-fc-algorithm 'sm2-v1
"Algorithm for spacing reviews of cards."
:type '(choice (const sm2-v1) (const sm2-v2))
:group 'org-fc)