From 5b50e34e12a33520c0d0f42fca25238513511eac Mon Sep 17 00:00:00 2001 From: William Carroll Date: Mon, 31 Aug 2020 14:49:14 +0100 Subject: Delete ghost module, scheduler.el Must've had a particularly strong cup of coffee the day I decided to attempt to write this. --- emacs/.emacs.d/wpc/scheduler.el | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 emacs/.emacs.d/wpc/scheduler.el (limited to 'emacs/.emacs.d') 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 - -;;; 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 -- cgit 1.4.1