-
Notifications
You must be signed in to change notification settings - Fork 0
/
isfeasibled.m
50 lines (48 loc) · 1.62 KB
/
isfeasibled.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
%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 HDTCTPs
%----------------
%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
%----------------
%Usage:
%loout=isfeasibled(DSM,MODES)
%----------------
%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=isfeasibled(DSM,MODES)
global P T C Ct Cc 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)
% Ct is the time constraint
% Cc is the cost constraint
% Cs is the score constraint
loout=false;
DSM=round(DSM); %DSM must be upper triangular binary matrix
MODES=round(MODES); %MODES must be integer vector
TD=zeros(numel(MODES),1); %Calculation of realized time demands
CD=zeros(numel(MODES),1); %Calculation of realized cost demands
for i=1:numel(MODES)
if DSM(i,i)==0
else
TD(i)=T(i,MODES(i));
CD(i)=C(i,MODES(i));
end
end
TPS=maxscore_PEM(DSM,P,ones(size(P,1))-P);
TPT=tptfast(DSM,TD);
TPC=tpcfast(DSM,CD);
if max([TPT-Ct,TPC-Cc,Cs-TPS])<=0%The TPT should be lower than Ct, TPC
loout=true; %should be lower than Cc and TPS should be greater than Cs
end