-
Notifications
You must be signed in to change notification settings - Fork 0
/
isfeasiblecr.m
55 lines (53 loc) · 1.96 KB
/
isfeasiblecr.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
%Author: Zsolt T. Kosztyán Ph.D habil., University of Pannonia,
%Faculty of Economics, Department of Quantitative Methods
%----------------
%Feasibility check for crossover function of GA approach for
%resource-constrained HCTCTPs
%----------------
%Output:
%loout=logical value of the feasibility
%----------------
%Inputs:
%DSM=N by N upper trisngle binary matrix of logic domain
%MODES=N by 1 vector of completion modes
%SST=N by 1 vector of scheduled strart time
%----------------
%Usage:
%loout=isfeasiblecr(DSM,MODES,SST)
%----------------
%Example:
%This is not executed as a stand-alone fuinction. Instead of specifying
%global values this function is cannot be run.
%----------------
%Prepositions and Requirements:
%1.)Global values must be specified
function loout=isfeasiblecr(DSM,MODES,SST)
global P T C R Ct Cc CR Cs
%global values:
% P is the PopSize by PopSize scores matrix of task/dependency inclusion
% T is the column vector of time demands (=the time domain)
% C is the column vector of cost demands (=the cost domain)
% R is the N by nR matrix of resource constraint (=the resource domain)
% Ct is the time constraint
% Cc is the cost constraint
% CR is the 1 by nR row vector of resource constraint
% Cs is the score constraint
loout=false;
TD=zeros(numel(MODES),1); %Calculation of realized time demands
CD=zeros(numel(MODES),1); %Calculation of realized cost demands
RD=zeros(numel(MODES),numel(CR)); %Calculation of realized resource demands
for i=1:numel(MODES)
if DSM(i,i)==0
else
TD(i)=MODES(i);
CD(i)=timetocost(TD(i),T(i,:),C(i,:));
RD(i,:)=timetor(TD(i),T(i,:),R(i,:));
end
end
TPS=maxscore_PEM(DSM,P,ones(size(P,1))-P);
TPT=tptsst(DSM,TD,SST);
TPC=tpcfast(DSM,CD);
TPR=maxresfun(SST,DSM,TD,RD)';
if max([TPT-Ct,TPC-Cc,TPR-CR,Cs-TPS])<=0%The TPT should be lower than Ct,
loout=true; %TPC should be lower than Cc and TPS should be greater than
end %Cs and TPR for every resources should be lower than CR