use of org.btrplace.scheduler.choco.view.AliasedCumulatives in project scheduler by btrplace.
the class CResourceCapacity method injectContinuous.
private boolean injectContinuous(ReconfigurationProblem rp, CShareableResource rcm) throws SchedulerException {
// The constraint must be already satisfied
if (!cstr.isSatisfied(rp.getSourceModel())) {
rp.getLogger().error("The constraint '{}' must be already satisfied to provide a continuous restriction", cstr);
return false;
}
int[] alias = new int[cstr.getInvolvedNodes().size()];
int i = 0;
for (Node n : cstr.getInvolvedNodes()) {
alias[i++] = rp.getNode(n);
}
TIntArrayList cUse = new TIntArrayList();
List<IntVar> dUse = new ArrayList<>();
for (VM vmId : rp.getVMs()) {
VMTransition a = rp.getVMAction(vmId);
Slice c = a.getCSlice();
Slice d = a.getDSlice();
if (c != null) {
cUse.add(rcm.getSourceResource().getConsumption(vmId));
}
if (d != null) {
int m = rcm.getVMAllocation(rp.getVM(vmId));
dUse.add(rp.fixed(m, "vmAllocation('", rcm.getResourceIdentifier(), "', '", vmId, "'"));
}
}
ChocoView v = rp.getView(AliasedCumulatives.VIEW_ID);
if (v == null) {
throw SchedulerModelingException.missingView(rp.getSourceModel(), AliasedCumulatives.VIEW_ID);
}
((AliasedCumulatives) v).addDim(cstr.getAmount(), cUse.toArray(), dUse.toArray(new IntVar[dUse.size()]), alias);
return true;
}
use of org.btrplace.scheduler.choco.view.AliasedCumulatives in project scheduler by btrplace.
the class CRunningCapacity method injectContinuous.
private boolean injectContinuous(ReconfigurationProblem rp) throws SchedulerException {
Model csp = rp.getModel();
// The constraint must be already satisfied
if (!cstr.isSatisfied(rp.getSourceModel())) {
rp.getLogger().error("The constraint '{}' must be already satisfied to provide a continuous restriction", cstr);
return false;
}
int[] alias = new int[cstr.getInvolvedNodes().size()];
int i = 0;
for (Node n : cstr.getInvolvedNodes()) {
alias[i++] = rp.getNode(n);
}
int nbRunning = 0;
for (Node n : rp.getSourceModel().getMapping().getOnlineNodes()) {
nbRunning += rp.getSourceModel().getMapping().getRunningVMs(n).size();
}
int[] cUse = new int[nbRunning];
IntVar[] dUse = new IntVar[rp.getFutureRunningVMs().size()];
Arrays.fill(cUse, 1);
Arrays.fill(dUse, csp.intVar(1));
ChocoView v = rp.getView(AliasedCumulatives.VIEW_ID);
if (v == null) {
throw SchedulerModelingException.missingView(rp.getSourceModel(), Cumulatives.VIEW_ID);
}
((AliasedCumulatives) v).addDim(cstr.getAmount(), cUse, dUse, alias);
return true;
}
Aggregations