public TravelingSalesmanAnalyser(ILocalityQuerySetup querySetup, ITSPOptions options)
 {
     this.querySetup        = querySetup;
     this.options           = options;
     this.resultsByLocality = new List <LocalityResult>();
     this.allocationResult  = new AllocationResult();
     this.allTourLengths    = new List <double>();
 }
 public TravelingSalesmanAnalyser(ILocalityQuerySetup querySetup, ITSPOptions options)
 {
     this.querySetup = querySetup;
     this.options = options;
     this.resultsByLocality = new List<LocalityResult>();
     this.allocationResult = new AllocationResult();
     this.allTourLengths = new List<double>();
 }
 public TravelingSalesmanAnalyser(ILocalityQuerySetup querySetup, ITSPOptions options)
 {
     this.querySetup = querySetup;
     this.options = options;
     this.results = new List<LocalityResult>();
 }