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

@@ -20,6 +20,11 @@ package tenor;
public class QuantizedToQuantizedTaskRelationship extends TaskRelationship implements IQuantizedChildTaskRelationship, IQuantizedParentTaskRelationship {
@Override
public double allocatedPriority(int quantity) {
return parent().allocatedPriority(quantity, this);
return parent().priorityAllocatedTo(this, quantity);
}
@Override
public QuantityRelationship cost() {
return child().cost();
}
}