diff options
author | Thanos Apollo <[email protected]> | 2024-08-06 08:15:26 +0300 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2024-08-06 08:15:26 +0300 |
commit | b8ac16c9c4d208c990a1bf1e8ce76199811253cc (patch) | |
tree | ca744163e70a311ec6e6eaf61ecafaa8e6a4ecd4 | |
parent | 9f0ead7515786ef259e610e49bfc384ad5c02c94 (diff) |
[Refactor] algorithm: Add gnosis score value.
* Reconceptualize the concept of ef as gnosis score.
-rw-r--r-- | gnosis-algorithm.el | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gnosis-algorithm.el b/gnosis-algorithm.el index b81cc05..4ad8df7 100644 --- a/gnosis-algorithm.el +++ b/gnosis-algorithm.el @@ -58,12 +58,12 @@ restriction for length." :group 'gnosis :type '(list integer)) -(defcustom gnosis-algorithm-ef '(0.35 0.30 1.3) - "Gnosis easiness factor. +(defcustom gnosis-algorithm-gnosis-value '(0.35 0.30 1.3) + "Starting gnosis score. -First item : Increase value -Second item: Decrease value -Third item : Total ef" +First item : Increase value (gnosis-plus) +Second item: Decrease value (gnosis-minus) +Third item : Total gnosis (gnosis-synolon/totalis) -> Total gnosis score" :group 'gnosis :type '(list float)) |