Skip to content
Snippets Groups Projects
Commit 68ec46ea authored by ThibautDemare's avatar ThibautDemare
Browse files

Don't use localWarehousingCosts for now (have to explore this a bit more)

parent 727ad83a
Branches
Tags
......@@ -214,7 +214,9 @@ global {
localVolumeSum <- localVolumeSum + transportedVolumes[j];
j <- j + 1;
}
localAverageCosts <- localWarehousingCosts + localCostsSum / length(localTransportationCosts);
localAverageCosts <-
// localWarehousingCosts + // If this should be used, we first need to justify how warehousing costs are computed. For now, have higher costs for larger surface is not necessarily realistic.
localCostsSum / length(localTransportationCosts);
localVolumeNormalizedAverageCosts <- localAverageCosts / localVolumeSum;
sum <- sum + localAverageCosts;
i <- i + 1;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment