- Fixed problem where urgency was not properly calculated for waiting tasks.
- Tweaked urgency coefficients to make most of the values closer together, and
  therefore more sensitive.
- Inverted 'waiting' coefficient.
- Boosted 'next', 'due' and 'blocking' coefficients.
- Modified unit tests accordingly.
- Lessened the impact of 'blocked', 'project', 'tags' and 'age'.
This commit is contained in:
Paul Beckingham 2012-02-26 23:13:15 -05:00
parent 9fb015f72c
commit 5feb736939
4 changed files with 115 additions and 98 deletions

View file

@ -136,17 +136,17 @@ std::string Config::_defaults =
"dependency.confirmation=on # Should dependency chain repair be confirmed?\n"
"\n"
"# Urgency Coefficients\n"
"urgency.next.coefficient=10.0 # Urgency coefficient for 'next' special tag\n"
"urgency.blocking.coefficient=9.0 # Urgency coefficient for blocking tasks\n"
"urgency.blocked.coefficient=-8.0 # Urgency coefficient for blocked tasks\n"
"urgency.due.coefficient=7.0 # Urgency coefficient for due dates\n"
"urgency.next.coefficient=15.0 # Urgency coefficient for 'next' special tag\n"
"urgency.due.coefficient=12.0 # Urgency coefficient for due dates\n"
"urgency.blocking.coefficient=8.0 # Urgency coefficient for blocking tasks\n"
"urgency.priority.coefficient=6.0 # Urgency coefficient for priorities\n"
"urgency.waiting.coefficient=5.0 # Urgency coefficient for waiting status\n"
"urgency.active.coefficient=4.0 # Urgency coefficient for active tasks\n"
"urgency.project.coefficient=3.0 # Urgency coefficient for projects\n"
"urgency.tags.coefficient=2.0 # Urgency coefficient for tags\n"
"urgency.age.coefficient=2.0 # Urgency coefficient for age\n"
"urgency.annotations.coefficient=1.0 # Urgency coefficient for annotations\n"
"urgency.age.coefficient=5.0 # Urgency coefficient for age\n"
"urgency.tags.coefficient=1.0 # Urgency coefficient for tags\n"
"urgency.project.coefficient=1.0 # Urgency coefficient for projects\n"
"urgency.blocked.coefficient=-5.0 # Urgency coefficient for blocked tasks\n"
"urgency.waiting.coefficient=-3.0 # Urgency coefficient for waiting status\n"
"urgency.age.max=365 # Maximum age in days\n"
"\n"
"#urgency.user.project.foo.coefficient=5.0 # Urgency coefficients for 'foo' project\n"