diff options
author | Thanos Apollo <[email protected]> | 2024-08-06 08:14:03 +0300 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2024-08-06 08:14:03 +0300 |
commit | 9f0ead7515786ef259e610e49bfc384ad5c02c94 (patch) | |
tree | f15642968491bd6dcc24186c2c725732b8ca6dc6 | |
parent | e24fd3159c0b1ec8b796554c96d300cb3935dbb2 (diff) |
[Refactor] algorithm: Add proto values.
* Remove old concept of intervals and add proto values.
-rw-r--r-- | gnosis-algorithm.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnosis-algorithm.el b/gnosis-algorithm.el index 787d7ec..b81cc05 100644 --- a/gnosis-algorithm.el +++ b/gnosis-algorithm.el @@ -50,11 +50,11 @@ (require 'cl-lib) (require 'calendar) -(defcustom gnosis-algorithm-interval '(1 3) - "Gnosis initial interval for initial successful reviews. +(defcustom gnosis-algorithm-proto '(0 1 2) + "Gnosis proto interval for the first successful reviews. -First item: First interval, -Second item: Second interval." +Values for the first proto successful intervals. There is no +restriction for length." :group 'gnosis :type '(list integer)) |