diff options
author | Thanos Apollo <[email protected]> | 2024-03-01 22:21:27 +0200 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2024-03-01 22:21:47 +0200 |
commit | 652ce6e5c05deaa7626e5bd07efbc7ce282fa1fe (patch) | |
tree | 8a4efa87d89720583370a7b091ac9894c1ce81ab | |
parent | a2629607b6763f51a5111e0da27be953cce44868 (diff) |
Add gnosis-algorithm-ef-frequency
Frequency by which to update ef increase & decrease values
-rw-r--r-- | gnosis-algorithm.el | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gnosis-algorithm.el b/gnosis-algorithm.el index 7e6e427..ed46149 100644 --- a/gnosis-algorithm.el +++ b/gnosis-algorithm.el @@ -69,6 +69,11 @@ NOTE: Do not change this value above 1" :group 'gnosis :type 'float) +(defcustom gnosis-algorithm-ef-frequency 3 + "Frequency for updating ef increase and decrease values." + :group 'gnosis + :type 'integer) + (defun gnosis-algorithm-date (&optional offset) "Return the current date in a list (year month day). |