Free cookie consent management tool by TermsFeed Policy Generator

source: branches/ScatterSearch (trunk integration)/HeuristicLab.GeoIP/1.12/Region.cs @ 8331

Last change on this file since 8331 was 8086, checked in by jkarder, 12 years ago

#1331:

  • synced branch with trunk
  • added custom interface (ISimilarityBasedOperator) to mark operators that conduct similarity calculation
  • similarity calculators are now parameterized by the algorithm
  • deleted SolutionPool2TierUpdateMethod
  • deleted KnapsackMultipleGuidesPathRelinker
  • moved IImprovementOperator, IPathRelinker and ISimilarityCalculator to HeuristicLab.Optimization
  • added parameter descriptions
  • fixed plugin references
  • fixed count of EvaluatedSolutions
  • fixed check for duplicate solutions
  • minor code improvements
File size: 523 bytes
Line 
1using System;
2using System.IO;
3public class Region{
4  public String countryCode;
5  public String countryName;
6  public String region;
7  public Region(){
8  }
9  public Region(String countryCode,String countryName,String region){
10      this.countryCode = countryCode;
11      this.countryName = countryName;
12      this.region = region;
13  }
14  public String getcountryCode() {
15      return countryCode;
16  }
17  public String getcountryName() {
18      return countryName;
19  }
20  public String getregion() {
21      return region;
22  }
23}
24
Note: See TracBrowser for help on using the repository browser.