Conditions | 3 |
Total Lines | 5 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | package it.cnr.istc.pst.platinum.ai.framework.microkernel.resolver.timeline.scheduling; |
||
52 | @Override |
||
53 | public int compareTo(FlawSolution o) { |
||
54 | OverlappingSetSchedule schedule = (OverlappingSetSchedule) o; |
||
55 | return this.constraints.size() > schedule.constraints.size() ? -1 : |
||
56 | this.constraints.size() < schedule.constraints.size() ? 1 : 0; |
||
57 | } |
||
59 |