Blame view

doc/uml/activities/scheduler/compute_schedule_act.txt 1.37 KB
164eebbd   haribo   UML and comments
1
2
@startuml

64fc9a89   Etienne Pallier   - un peu de refac...
3
4
5
6
7
8
9
10
11
12
13
14
legend right
  Short
  legend
endlegend

title **Scheduler.compute_schedule()**

skinparam activity {
  'StartColor red
  'BarColor SaddleBrown 
  'EndColor Silver
  'BackgroundColor Peru
578613de   Etienne Pallier   renamed activity ...
15
  BackgroundColor<<MODULE>> Orange
64fc9a89   Etienne Pallier   - un peu de refac...
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
  'BorderColor Peru
  'FontName Impact
}

(*)	--> "//# Order schedule sequences according to efficiency criteria (priority, set time, ...)//" <<MODULE>>

	--> "//# Create a unique big empty available interval that takes all the night duration [plan_start,plan_end]// \n
        intervals = Interval(schedule.plan_start, schedule.plan_end)"

	--> "//# Remove invalid sequences from schedule, and mark them INVALID// \n
	A sequence is invalid if:
	 - sequence.jd1 < 0 
	 - OR sequence.jd2 < 0 
	 - OR sequence.duration <= 0 
	 - OR sequence.jd2 - sequence.jd1 < sequence.duration \n\n
	**remove_invalid_sequences()**\l" <<MODULE>>

	--> "//# **TODO:** Determine priorities according to SP, user, ...// 
	**determine_priorities()**\l" as B1 <<MODULE>>
        
	--> "//# Remove non eligible sequences from schedule//
	**remove_non_eligible_sequences()**\l" <<MODULE>>

	--> "//# Sort sequences according to highest priority and soonest JD2// 
	**sort_by_jd2_and_priorities()**\l" <<MODULE>>
 
	--> "//# Try to place sorted sequences in schedule one by one in available intervals (shift placed sequences if necessary)// 
	**place_sequences()**\l" <<MODULE>>
164eebbd   haribo   UML and comments
44

164eebbd   haribo   UML and comments
45
46
47
	--> (*)

@enduml