summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThanos Apollo <[email protected]>2024-08-06 08:15:58 +0300
committerThanos Apollo <[email protected]>2024-08-06 08:15:58 +0300
commit286dd68980f85f996d40c44503a2d24b530ec121 (patch)
tree628ebdb45f39c5fb6997ca4e2b6e71a03a1c2b12
parentb8ac16c9c4d208c990a1bf1e8ce76199811253cc (diff)
[Refactor] algorithm: Add amnesia value.
* Replace old concept of ff with amnesia value.
-rw-r--r--gnosis-algorithm.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/gnosis-algorithm.el b/gnosis-algorithm.el
index 4ad8df7..2fdbc00 100644
--- a/gnosis-algorithm.el
+++ b/gnosis-algorithm.el
@@ -67,12 +67,12 @@ Third item : Total gnosis (gnosis-synolon/totalis) -> Total gnosis score"
:group 'gnosis
:type '(list float))
-(defcustom gnosis-algorithm-ff 0.5
+(defcustom gnosis-algorithm-amnesia-value 0.5
"Gnosis forgetting factor.
Used to calcuate new interval for failed questions.
-NOTE: This value should be less than 1.0."
+This value should be less than 1.0."
:group 'gnosis
:type 'float)