Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ts = team size,
- // mc = mission criticality,
- // tl = team location,
- // tc = team capacity,
- // dkg = domain knowledge gaps,
- // d = dependencies
- double GetComplexity(double ts, double mc, double tl, double tc, double dkg, double d) {
- var nums = new List<double> {ts, mc, tl, tc, dkg, d};
- var sum = nums.Sum(i => Math.Log10(i));
- return Math.Pow(2, sum);
- }
- // mu = market uncertainty,
- // tu = technical uncertainty,
- // pd = project domain,
- // dsf = dependencies and scope flexibility
- double GetUncertainty(double mu, double tu, double pd, double dsf) {
- var nums = new List<double> {mu, tu, pd, dsf};
- var sum = nums.Sum(i => Math.Log10(i));
- return Math.Pow(2, sum);
- }
Advertisement
Add Comment
Please, Sign In to add comment