diff options
author | Thanos Apollo <[email protected]> | 2024-08-06 08:19:34 +0300 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2024-08-06 08:19:34 +0300 |
commit | d128715a53411c03e896444d78e801af53295c7e (patch) | |
tree | d96ab3156899a32066ed9306b10b0cdeb074cde9 | |
parent | 4a7001b771ac1b69e6faffed2cb949b6c2f64f47 (diff) |
[Refactor] algorithm: Add anagnosis.
* Replace old concept of ef-threshold with anagnosis, an event that
triggers a change of gnosis score depending on the success or
failure of the recall.
-rw-r--r-- | gnosis-algorithm.el | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/gnosis-algorithm.el b/gnosis-algorithm.el index a7b72ba..bbf1467 100644 --- a/gnosis-algorithm.el +++ b/gnosis-algorithm.el @@ -90,10 +90,15 @@ Agnoia refers to the lack of knowledge." :group 'gnosis :type 'float) -(defcustom gnosis-algorithm-ef-threshold 3 - "Threshold for updating ef increase/decrease values. +(defcustom gnosis-algorithm-anagnosis-value 3 + "Threshold value for anagnosis event. -Refers to the number of consecutive successful or failed reviews." +Anagosis is the process recognition & understanding of a context/gnosis. + +Anagnosis events update gnosis-plus & gnosis-minus values, depending +on the success or failure of recall." + :group 'gnosis + :type 'integer) :group 'gnosis :type 'integer) |