Changeset 7085 for branches/RegressionBenchmarks/HeuristicLab.Analysis
- Timestamp:
- 11/28/11 13:47:28 (13 years ago)
- Location:
- branches/RegressionBenchmarks
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/RegressionBenchmarks
- Property svn:ignore
-
old new 4 4 *.suo 5 5 *.vsp 6 Doxygen 6 7 Google.ProtocolBuffers-0.9.1.dll 7 8 HeuristicLab 3.3.5.1.ReSharper.user 8 9 HeuristicLab 3.3.6.0.ReSharper.user 9 10 HeuristicLab.4.5.resharper.user 11 HeuristicLab.ExtLibs.6.0.ReSharper.user 10 12 HeuristicLab.resharper.user 11 13 ProtoGen.exe … … 16 18 bin 17 19 protoc.exe 18 HeuristicLab.ExtLibs.6.0.ReSharper.user19 Doxygen
-
- Property svn:mergeinfo changed
- Property svn:ignore
-
branches/RegressionBenchmarks/HeuristicLab.Analysis
- Property svn:mergeinfo changed
/trunk/sources/HeuristicLab.Analysis (added) merged: 6978,7021
- Property svn:mergeinfo changed
-
branches/RegressionBenchmarks/HeuristicLab.Analysis/3.3/DataVisualization/DataRowVisualProperties.cs
r6676 r7085 142 142 } 143 143 } 144 private double scaleFactor; 145 public double ScaleFactor { 146 get { return scaleFactor; } 147 set { 148 if (scaleFactor != value) { 149 scaleFactor = value; 150 OnPropertyChanged("ScaleFactor"); 151 } 152 } 153 } 144 154 private string displayName; 145 155 public string DisplayName { … … 203 213 get { return exactBins; } 204 214 set { exactBins = value; } 215 } 216 [Storable(Name = "ScaleFactor")] 217 private double StorableScaleFactor { 218 get { return scaleFactor; } 219 set { scaleFactor = value; } 205 220 } 206 221 [Storable(Name = "DisplayName")] … … 224 239 this.bins = original.bins; 225 240 this.exactBins = original.exactBins; 241 this.scaleFactor = original.scaleFactor; 226 242 this.displayName = original.displayName; 227 243 } … … 236 252 bins = 10; 237 253 exactBins = false; 254 scaleFactor = 1.0; 238 255 displayName = String.Empty; 239 256 } -
branches/RegressionBenchmarks/HeuristicLab.Analysis/3.3/HeuristicLab.Analysis-3.3.csproj
r6866 r7085 101 101 <Reference Include="ALGLIB-3.1.0, Version=3.1.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 102 102 <HintPath>..\..\bin\ALGLIB-3.1.0.dll</HintPath> 103 <Private>False</Private> 103 104 </Reference> 104 105 <Reference Include="System" />
Note: See TracChangeset
for help on using the changeset viewer.