solve_lessAOA {critpath} | R Documentation |
Determines the solution using the LESS method. Relationships between activities can be given as a list of predecessors or start and end node numbers.
Description
Determines the solution using the LESS method. Relationships between activities can be given as a list of predecessors or start and end node numbers.
Usage
solve_lessAOA(input_data, ICconst, ICslope, predecessors = FALSE)
Arguments
input_data |
Data frame containing the graph structure and activity durations. For the LESS method and start/end nodes you need 7 columns (the order matters):
For the LESS method and predecessors list you need 6 columns (the order matters):
|
ICconst |
Intercept of the indirect cost function. |
ICslope |
Slope of the indirect cost function. |
predecessors |
TRUE if the user data contains a list of immediately preceding activities
If set to |
Value
A list made of a graph and a result set.
Examples
z <- solve_lessAOA(lessexample1, 50, 15)