summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xhledger-overview.hs5
1 files changed, 4 insertions, 1 deletions
diff --git a/hledger-overview.hs b/hledger-overview.hs
index d3cae2c..b5d7b30 100755
--- a/hledger-overview.hs
+++ b/hledger-overview.hs
@@ -175,8 +175,11 @@ steps start = zip (map realToFrac lvls) (zipWith (-) (ls ++ [0]) (0 : ls))
levelSchedule = Map.fromList $ zip ages lvls
where
+ start = 5.0
+ goal = 9.0
+ step = (goal - start) / 600
ages = map (roundTo 2) [20, 20 + 1 / 12 .. 70]
- lvls = map (roundTo 2) [5.00, 5.005 .. 8.0]
+ lvls = map (roundTo 2) [start, start + step .. goal]
-- | A trivial decision is one that is between 0.01% of the total.
--