Library prosa.analysis.definitions.completion_sequence

From mathcomp Require Export ssreflect seq ssrnat ssrbool eqtype.
Require Import prosa.behavior.service.

This module contains basic definitions and properties of job completion sequences.

Notion of a Completion Sequence

We begin by defining a job completion sequence.
Consider any kind of jobs with a cost and any kind of processor state.
  Context {Job : JobType} `{JobCost Job} {PState : ProcessorState Job}.

Consider any job arrival sequence.
  Variable arr_seq: arrival_sequence Job.

Consider any schedule.
  Variable sched : schedule PState.

For each instant t, the completion sequence returns all arrived jobs that have completed at t.