organize {ProjectManagement} | R Documentation |
Organize project activities
Description
This function organizes the activities of a project, in such a way that if i precedes j then i is less strict than j.
Usage
organize(prec1and2 = matrix(0), prec3and4 = matrix(0))
Arguments
prec1and2 |
A matrix indicating the order of precedence type 1 and 2 between the activities (Default=matrix(0)). If value |
prec3and4 |
A matrix indicating the order of precedence type 3 and 4 between the activities (Default=matrix(0)). If value |
Value
A list containing:
Precedence: ordered precedence matrix.
Order: new activities values.
Examples
prec1and2<-matrix(c(0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),nrow=5,ncol=5,byrow=TRUE)
organize(prec1and2)