in too deep

This commit is contained in:
Leijurv
2018-10-30 11:51:49 -07:00
parent e1bb8fd570
commit c887b27df9
24 changed files with 393 additions and 25 deletions

View File

@@ -18,4 +18,13 @@
package tenor;
public class SingularToSingularTaskRelationship extends TaskRelationship implements ISingularChildTaskRelationship, ISingularParentTaskRelationship {
@Override
public double allocatedPriority() {
return parent().priorityAllocatedToChild(this);
}
@Override
public double cost() {
return child().cost();
}
}