about summary refs log tree commit diff
diff options
context:
space:
mode:
authorWilliam Carroll <wpcarro@gmail.com>2020-08-31T13·49+0100
committerWilliam Carroll <wpcarro@gmail.com>2020-08-31T13·49+0100
commit5b50e34e12a33520c0d0f42fca25238513511eac (patch)
treeeeb127d27694afb52b844ddc56367b8416b25ab7
parentc78b2339f9196c1f521d159892f84dab384d31d5 (diff)
Delete ghost module, scheduler.el
Must've had a particularly strong cup of coffee the day I decided to attempt to
write this.
-rw-r--r--emacs/.emacs.d/wpc/scheduler.el22
1 files changed, 0 insertions, 22 deletions
diff --git a/emacs/.emacs.d/wpc/scheduler.el b/emacs/.emacs.d/wpc/scheduler.el
deleted file mode 100644
index bae953228925..000000000000
--- a/emacs/.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