| 84 | |
| 85 | template<class TaskView, bool inc> |
| 86 | forceinline bool |
| 87 | StoEst<TaskView,inc>::operator () |
| 88 | (const TaskView& t1, const TaskView& t2) const { |
| 89 | return inc ? |
| 90 | (t1.est() < t2.est() || (t1.est()==t2.est() && t1.lct() < t2.lct())) |
| 91 | : (t2.est() < t1.est() || (t2.est()==t1.est() && t2.lct() < t1.lct())); |
| 92 | } |
| 93 | |
| 94 | template<class TaskView, bool inc> |
| 95 | forceinline bool |