Skip to content
Snippets Groups Projects
Commit acc353bd authored by Kimaya Bedarkar's avatar Kimaya Bedarkar Committed by Björn Brandenburg
Browse files

addition to basic facts

parent 0727d647
No related branches found
No related tags found
No related merge requests found
...@@ -118,9 +118,12 @@ Section Arrived. ...@@ -118,9 +118,12 @@ Section Arrived.
End Arrived. End Arrived.
(** We add the above lemma into a "Hint Database" basic_facts, so Coq (** We add some of the above lemmas to the "Hint Database"
will be able to apply it automatically. *) [basic_facts], so the [auto] tactic will be able to use them. *)
Global Hint Resolve valid_schedule_implies_jobs_must_arrive_to_execute : basic_facts. Global Hint Resolve
valid_schedule_implies_jobs_must_arrive_to_execute
jobs_must_arrive_to_be_ready
: basic_facts.
(** In this section, we establish useful facts about arrival sequence prefixes. *) (** In this section, we establish useful facts about arrival sequence prefixes. *)
Section ArrivalSequencePrefix. Section ArrivalSequencePrefix.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment