diff options
author | William Carroll <wpcarro@gmail.com> | 2020-01-30T16·00+0000 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-01-30T16·00+0000 |
commit | 578ed1ba98510058cf48f897a9bf4e3391684120 (patch) | |
tree | 5eadabd3d232151c75ac2424eaa8771ab25e927e /configs/shared/.emacs.d/wpc/scheduler.el | |
parent | 3684adf23f847114e1beeaab162398628ba571aa (diff) |
Move move .emacs.d out of configs/shared
Moving all of my Emacs-related files into their own directory at the root of this repository.
Diffstat (limited to 'configs/shared/.emacs.d/wpc/scheduler.el')
-rw-r--r-- | configs/shared/.emacs.d/wpc/scheduler.el | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/configs/shared/.emacs.d/wpc/scheduler.el b/configs/shared/.emacs.d/wpc/scheduler.el deleted file mode 100644 index bae953228925..000000000000 --- a/configs/shared/.emacs.d/wpc/scheduler.el +++ /dev/null @@ -1,22 +0,0 @@ -;;; scheduler.el --- Sketches of scheduling -*- lexical-binding: t -*- -;; Author: William Carroll <wpcarro@gmail.com> - -;;; Commentary: -;; Attempting to create a FSM for scheduling things in various ways: -;; -;; Scheduling policies: -;; - earliest due date: minimizes total lateness of all tasks in a pool. Put -;; the task with the latest due date last in the list and work backwards to -;; solve the precedence constraint (i.e. dependency issue). -;; - shortest processing time: maximizes number of tasks completed. Prioritize -;; tasks in the order of how long they will take to complete from shortest to -;; longest. This breaks down when precedence constraints are introduced. -;; -;; Tasks should inherit prioritization. - - - -;;; Code: - -(provide 'scheduler) -;;; scheduler.el ends here |