Changeset 14451
- Timestamp:
- 12/03/16 00:33:22 (8 years ago)
- Location:
- branches/MemPRAlgorithm
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/MemPRAlgorithm/HeuristicLab.Core/3.3/Attributes/ItemAttribute.cs
r14185 r14451 39 39 set { description = value == null ? string.Empty : value; } 40 40 } 41 public bool ExcludeGenericTypeInfo { get; set; } 41 42 42 public ItemAttribute() { 43 Name = string.Empty; 44 Description = string.Empty; 45 } 46 public ItemAttribute(string name, string description) { 43 public ItemAttribute() : this(string.Empty, string.Empty, false) { } 44 public ItemAttribute(string name, string description) : this(name, description, false) { } 45 public ItemAttribute(string name, string description, bool excludeGenericTypeInfo) { 47 46 Name = name; 48 47 Description = description; 48 ExcludeGenericTypeInfo = excludeGenericTypeInfo; 49 49 } 50 50 … … 52 52 object[] attribs = type.GetCustomAttributes(typeof(ItemAttribute), false); 53 53 if (attribs.Length > 0) { 54 string name = ((ItemAttribute)attribs[0]).Name; 55 if (type.IsGenericType) { 54 var attribute = (ItemAttribute)attribs[0]; 55 string name = attribute.Name; 56 if (!attribute.ExcludeGenericTypeInfo && type.IsGenericType) { 56 57 name += "<"; 57 58 Type[] typeParams = type.GetGenericArguments(); -
branches/MemPRAlgorithm/HeuristicLab.Problems.QuadraticAssignment/3.3/HeuristicLab.Problems.QuadraticAssignment-3.3.csproj
r11623 r14451 137 137 <Compile Include="LocalImprovement\QAPExhaustiveInversionLocalImprovement.cs" /> 138 138 <Compile Include="QAPAssignment.cs" /> 139 <Compile Include="QAPBasicProblem.cs" /> 139 140 <Compile Include="QAPPermutationProximityCalculator.cs" /> 140 141 <Compile Include="QuadraticAssignmentProblem.cs" />
Note: See TracChangeset
for help on using the changeset viewer.