コード例 #1
0
 public CentroidDailyAnalysisMethod(ILocalityQuerySetup querySetup)
 {
     this.querySetup        = querySetup;
     this.resultsByLocality = new List <LocalityResult>();
     this.allocationResult  = new AllocationResult();
     this.allDistances      = new List <double>();
 }
コード例 #2
0
 public CentroidDailyAnalysisMethod(ILocalityQuerySetup querySetup)
 {
     this.querySetup = querySetup;
     this.resultsByLocality = new List<LocalityResult>();
     this.allocationResult = new AllocationResult();
     this.allDistances = new List<double>();
 }
コード例 #3
0
 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>();
 }
コード例 #4
0
 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>();
 }
コード例 #5
0
 public LocalityHubsQuerySQLFactory(ILocalityQuerySetup setup)
 {
     this.setup = setup;
 }
 public VisitsByLocalityQuerySQLFactory(ILocalityQuerySetup setup, string locality)
 {
     this.setup = setup;
     this.locality = locality;
 }
コード例 #7
0
 public CentroidAnalysisMethod(ILocalityQuerySetup querySetup)
 {
     this.querySetup = querySetup;
     this.results = new List<LocalityResult>();
 }
コード例 #8
0
 public LocalityHubsQuerySQLFactory(ILocalityQuerySetup setup)
 {
     this.setup = setup;
 }
コード例 #9
0
 public VisitsByLocalityQuerySQLFactory(ILocalityQuerySetup setup, string locality)
 {
     this.setup    = setup;
     this.locality = locality;
 }
 public TravelingSalesmanAnalyser(ILocalityQuerySetup querySetup, ITSPOptions options)
 {
     this.querySetup = querySetup;
     this.options = options;
     this.results = new List<LocalityResult>();
 }