- Timestamp:
- 08/11/15 10:11:47 (10 years ago)
- Location:
- branches/HiveStatistics/sources
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HiveStatistics/sources
- Property svn:ignore
-
old new 23 23 bin 24 24 protoc.exe 25 obj
-
- Property svn:mergeinfo changed
- Property svn:ignore
-
branches/HiveStatistics/sources/HeuristicLab.Encodings.RealVectorEncoding
- Property svn:mergeinfo changed
-
branches/HiveStatistics/sources/HeuristicLab.Encodings.RealVectorEncoding/3.3/Plugin.cs.frame
r12012 r12843 26 26 /// Plugin class for HeuristicLab.Encodings.RealVectorEncoding plugin. 27 27 /// </summary> 28 [Plugin("HeuristicLab.Encodings.RealVectorEncoding", "3.3.1 1.$WCREV$")]28 [Plugin("HeuristicLab.Encodings.RealVectorEncoding", "3.3.12.$WCREV$")] 29 29 [PluginFile("HeuristicLab.Encodings.RealVectorEncoding-3.3.dll", PluginFileType.Assembly)] 30 30 [PluginDependency("HeuristicLab.Collections", "3.3")] -
branches/HiveStatistics/sources/HeuristicLab.Encodings.RealVectorEncoding/3.3/Properties/AssemblyInfo.cs.frame
r12012 r12843 55 55 // [assembly: AssemblyVersion("1.0.*")] 56 56 [assembly: AssemblyVersion("3.3.0.0")] 57 [assembly: AssemblyFileVersion("3.3.1 1.$WCREV$")]57 [assembly: AssemblyFileVersion("3.3.12.$WCREV$")] -
branches/HiveStatistics/sources/HeuristicLab.Encodings.RealVectorEncoding/3.3/RealVectorEncoding.cs
r12012 r12843 124 124 bounds[i, 1] = max[i]; 125 125 } 126 LengthParameter = new FixedValueParameter<IntValue>(Name + ".Length", new IntValue(length)); 127 BoundsParameter = new ValueParameter<DoubleMatrix>(Name + ".Bounds", bounds); 126 lengthParameter = new FixedValueParameter<IntValue>(Name + ".Length", new IntValue(length)); 127 boundsParameter = new ValueParameter<DoubleMatrix>(Name + ".Bounds", bounds); 128 Parameters.Add(lengthParameter); 129 Parameters.Add(boundsParameter); 128 130 129 131 SolutionCreator = new UniformRandomRealVectorCreator();
Note: See TracChangeset
for help on using the changeset viewer.