public GraphBuilder(CouplingCache cache, IEnumerable<ITestIdentifier> testStrategies, IInterfaceFollowingStrategy interfaceFollowingStrategy, bool isDebug, int numThreads)
 {
     _debugTreeWalks = isDebug;
     _numthreads = numThreads;
     if (isDebug) _numthreads = 1;
     _cache = cache;
     _interfaceFollowingStrategy = interfaceFollowingStrategy;
     _testStrategies = testStrategies;
 }
 public GraphBuilder(CouplingCache cache, IEnumerable <ITestIdentifier> testStrategies, IInterfaceFollowingStrategy interfaceFollowingStrategy, bool isDebug, int numThreads)
 {
     _debugTreeWalks = isDebug;
     _numthreads     = numThreads;
     if (isDebug)
     {
         _numthreads = 1;
     }
     _cache = cache;
     _interfaceFollowingStrategy = interfaceFollowingStrategy;
     _testStrategies             = testStrategies;
 }