Changeset 7246
- Timestamp:
- 12/30/11 01:54:44 (13 years ago)
- Location:
- trunk/sources
- Files:
-
- 2 deleted
- 12 edited
- 3 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Algorithms.Benchmarks.Views/3.3
- Property svn:ignore
-
old new 2 2 obj 3 3 *.vs10x 4 *.user
-
- Property svn:ignore
-
trunk/sources/HeuristicLab.Algorithms.Benchmarks.Views/3.3/BenchmarkAlgorithmView.Designer.cs
r7245 r7246 21 21 22 22 namespace HeuristicLab.Algorithms.Benchmarks.Views { 23 partial class Benchmark View {23 partial class BenchmarkAlgorithmView { 24 24 /// <summary> 25 25 /// Required designer variable. -
trunk/sources/HeuristicLab.Algorithms.Benchmarks.Views/3.3/BenchmarkAlgorithmView.cs
r7245 r7246 25 25 26 26 namespace HeuristicLab.Algorithms.Benchmarks.Views { 27 [View("Benchmark View")]28 [Content(typeof(Benchmark ), true)]29 public partial class Benchmark View : AlgorithmView {30 public new Benchmark Content {31 get { return (Benchmark )base.Content; }27 [View("BenchmarkAlgorithm View")] 28 [Content(typeof(BenchmarkAlgorithm), true)] 29 public partial class BenchmarkAlgorithmView : AlgorithmView { 30 public new BenchmarkAlgorithm Content { 31 get { return (BenchmarkAlgorithm)base.Content; } 32 32 set { base.Content = value; } 33 33 } 34 public Benchmark View() {34 public BenchmarkAlgorithmView() { 35 35 InitializeComponent(); 36 36 tabControl.TabPages.Remove(this.problemTabPage); -
trunk/sources/HeuristicLab.Algorithms.Benchmarks.Views/3.3/HeuristicLab.Algorithms.Benchmarks.Views-3.3.csproj
r7015 r7246 84 84 <Reference Include="System" /> 85 85 <Reference Include="System.Core" /> 86 <Reference Include="System.D rawing" />86 <Reference Include="System.Data" /> 87 87 <Reference Include="System.Windows.Forms" /> 88 <Reference Include="System.Xml.Linq" />89 <Reference Include="System.Data.DataSetExtensions" />90 <Reference Include="Microsoft.CSharp" />91 <Reference Include="System.Data" />92 88 <Reference Include="System.Xml" /> 93 89 </ItemGroup> 94 90 <ItemGroup> 95 <Compile Include="Benchmark View.cs">91 <Compile Include="BenchmarkAlgorithmView.cs"> 96 92 <SubType>UserControl</SubType> 97 93 </Compile> 98 <Compile Include="BenchmarkView.Designer.cs"> 99 <DependentUpon>BenchmarkView.cs</DependentUpon> 100 </Compile> 101 <Compile Include="IBenchmarkView.cs"> 102 <SubType>UserControl</SubType> 103 </Compile> 104 <Compile Include="IBenchmarkView.Designer.cs"> 105 <DependentUpon>IBenchmarkView.cs</DependentUpon> 94 <Compile Include="BenchmarkAlgorithmView.Designer.cs"> 95 <DependentUpon>BenchmarkAlgorithmView.cs</DependentUpon> 106 96 </Compile> 107 97 <Compile Include="Plugin.cs" /> … … 117 107 <Project>{068C70A7-8CAF-4AB6-8721-4564D62292BC}</Project> 118 108 <Name>HeuristicLab.Algorithms.Benchmarks-3.3</Name> 119 <Private>False</Private>120 </ProjectReference>121 <ProjectReference Include="..\..\HeuristicLab.Collections\3.3\HeuristicLab.Collections-3.3.csproj">122 <Project>{958B43BC-CC5C-4FA2-8628-2B3B01D890B6}</Project>123 <Name>HeuristicLab.Collections-3.3</Name>124 109 <Private>False</Private> 125 110 </ProjectReference> -
trunk/sources/HeuristicLab.Algorithms.Benchmarks.Views/3.3/Plugin.cs.frame
r7225 r7246 26 26 /// Plugin class for HeuristicLab.Algorithms.Benchmarks plugin. 27 27 /// </summary> 28 [Plugin("HeuristicLab.Algorithms.Benchmarks.Views", "Provides views for benchmarking algorithms.", "3.3.6.$WCREV$")] 29 [PluginFile("HeuristicLab.Algorithms.Benchmarks.Views-3.3.dll", PluginFileType.Assembly)] 28 [Plugin("HeuristicLab.Algorithms.Benchmarks.Views", "Provides views for performance benchmark algorithms.", "3.3.6.$WCREV$")] 29 [PluginFile("HeuristicLab.Algorithms.Benchmarks.Views-3.3.dll", PluginFileType.Assembly)] 30 [PluginDependency("HeuristicLab.Algorithms.Benchmarks", "3.3")] 31 [PluginDependency("HeuristicLab.Common", "3.3")] 30 32 [PluginDependency("HeuristicLab.MainForm", "3.3")] 31 [PluginDependency("HeuristicLab.MainForm.WindowsForms", "3.3")] 33 [PluginDependency("HeuristicLab.MainForm.WindowsForms", "3.3")] 32 34 [PluginDependency("HeuristicLab.Optimization", "3.3")] 33 35 [PluginDependency("HeuristicLab.Optimization.Views", "3.3")] 34 [PluginDependency("HeuristicLab.Algorithms.Benchmarks", "3.3")]35 36 public class HeuristicLabAlgorithmsBenchmarksViewsPlugin : PluginBase { 36 37 } -
trunk/sources/HeuristicLab.Algorithms.Benchmarks.Views/3.3/Properties/AssemblyInfo.cs.frame
r7225 r7246 27 27 // associated with an assembly. 28 28 [assembly: AssemblyTitle("HeuristicLab.Algorithms.Benchmarks.Views")] 29 [assembly: AssemblyDescription(" Benchmarking")]29 [assembly: AssemblyDescription("Views of the HeuristicLab performance benchmark algorithms")] 30 30 [assembly: AssemblyConfiguration("")] 31 31 [assembly: AssemblyCompany("")] … … 41 41 42 42 // The following GUID is for the ID of the typelib if this project is exposed to COM 43 [assembly: Guid(" 3E422463-0CE0-400D-9544-5C11D5818769")]43 [assembly: Guid("E4BF5E27-BFA8-4402-9B75-4BE3B91E012C")] 44 44 45 45 // Version information for an assembly consists of the following four values: -
trunk/sources/HeuristicLab.Algorithms.Benchmarks/3.3
- Property svn:ignore
-
old new 3 3 obj 4 4 *.vs10x 5 *.user
-
- Property svn:ignore
-
trunk/sources/HeuristicLab.Algorithms.Benchmarks/3.3/BenchmarkAlgorithm.cs
r7245 r7246 36 36 37 37 namespace HeuristicLab.Algorithms.Benchmarks { 38 /// <summary> 39 /// A base class for benchmarks. 40 /// </summary> 41 [Item("Benchmark", "A wrapper for benchmark algorithms.")] 38 [Item("Benchmark Algorithm", "An algorithm to execute performance benchmarks (Linpack, Dhrystone, Whetstone, etc.).")] 42 39 [Creatable("Algorithms")] 43 40 [StorableClass] 44 public class Benchmark: IAlgorithm {41 public sealed class BenchmarkAlgorithm : IAlgorithm { 45 42 private Random random = new Random(); 43 private CancellationTokenSource cancellationTokenSource; 46 44 47 45 [Storable] … … 49 47 50 48 [Storable] 51 private IBenchmark benchmark Algorithm;52 public IBenchmark Benchmark Algorithm{53 get { return benchmark Algorithm; }49 private IBenchmark benchmark; 50 public IBenchmark Benchmark { 51 get { return benchmark; } 54 52 set { 55 53 if (value == null) throw new ArgumentNullException(); 56 benchmarkAlgorithm = value; 57 } 58 } 59 60 private CancellationTokenSource cancellationTokenSource; 54 benchmark = value; 55 } 56 } 61 57 62 58 [Storable] … … 77 73 public TimeSpan ExecutionTime { 78 74 get { return executionTime; } 79 pr otectedset {75 private set { 80 76 executionTime = value; 81 77 OnExecutionTimeChanged(); … … 96 92 97 93 [Storable] 98 pr otectedint runsCounter;94 private int runsCounter; 99 95 100 96 [Storable] … … 102 98 public RunCollection Runs { 103 99 get { return runs; } 104 pr otectedset {100 private set { 105 101 if (value == null) throw new ArgumentNullException(); 106 102 if (runs != value) { … … 116 112 public ResultCollection Results { 117 113 get { return results; } 114 } 115 116 public Type ProblemType { 117 get { return typeof(IProblem); } 118 118 } 119 119 … … 134 134 } 135 135 136 public Type ProblemType { 137 get { return typeof(IProblem); } 138 } 139 140 [Storable] 141 protected string name; 142 136 [Storable] 137 private string name; 143 138 public string Name { 144 139 get { return name; } … … 161 156 162 157 [Storable] 163 pr otectedstring description;158 private string description; 164 159 public string Description { 165 160 get { return description; } … … 224 219 #region Parameter Properties 225 220 226 public ConstrainedValueParameter<IBenchmark> Benchmark AlgorithmParameter {227 get { return (ConstrainedValueParameter<IBenchmark>)Parameters["Benchmark Algorithm"]; }221 public ConstrainedValueParameter<IBenchmark> BenchmarkParameter { 222 get { return (ConstrainedValueParameter<IBenchmark>)Parameters["Benchmark"]; } 228 223 } 229 224 … … 241 236 242 237 [StorableConstructor] 243 public Benchmark (bool deserializing) { }244 245 public Benchmark () {238 public BenchmarkAlgorithm(bool deserializing) { } 239 240 public BenchmarkAlgorithm() { 246 241 name = ItemName; 247 242 description = ItemDescription; … … 259 254 } 260 255 261 public Benchmark (Benchmarkoriginal, Cloner cloner) {256 public BenchmarkAlgorithm(BenchmarkAlgorithm original, Cloner cloner) { 262 257 cloner.RegisterClonedObject(original, this); 263 258 name = original.name; … … 293 288 values.Add(b); 294 289 } 295 string paramName = "Benchmark Algorithm";290 string paramName = "Benchmark"; 296 291 if (!Parameters.ContainsKey(paramName)) { 297 292 if (values.Count > 0) { … … 308 303 } 309 304 310 public v irtual void Prepare() {305 public void Prepare() { 311 306 if ((ExecutionState != ExecutionState.Prepared) && (ExecutionState != ExecutionState.Paused) && (ExecutionState != ExecutionState.Stopped)) 312 307 throw new InvalidOperationException(string.Format("Prepare not allowed in execution state \"{0}\".", ExecutionState)); … … 322 317 } 323 318 324 public v irtual void Pause() {319 public void Pause() { 325 320 if (ExecutionState != ExecutionState.Started) 326 321 throw new InvalidOperationException(string.Format("Pause not allowed in execution state \"{0}\".", ExecutionState)); 327 322 } 328 public v irtual void Stop() {323 public void Stop() { 329 324 if ((ExecutionState != ExecutionState.Started) && (ExecutionState != ExecutionState.Paused)) 330 325 throw new InvalidOperationException(string.Format("Stop not allowed in execution state \"{0}\".", ExecutionState)); … … 332 327 } 333 328 334 public v irtual void Start() {329 public void Start() { 335 330 cancellationTokenSource = new CancellationTokenSource(); 336 331 OnStarted(); … … 356 351 } 357 352 358 pr otected virtualvoid Run(object state) {353 private void Run(object state) { 359 354 CancellationToken cancellationToken = (CancellationToken)state; 360 355 lastUpdateTime = DateTime.Now; … … 364 359 timer.Start(); 365 360 try { 366 Benchmark Algorithm = (IBenchmark)BenchmarkAlgorithmParameter.ActualValue;361 Benchmark = (IBenchmark)BenchmarkParameter.ActualValue; 367 362 int chunkSize = ((IntValue)ChunkSizeParameter.ActualValue).Value; 368 363 if (chunkSize > 0) { 369 Benchmark Algorithm.ChunkData = CreateDataChuck(chunkSize);364 Benchmark.ChunkData = CreateDataChuck(chunkSize); 370 365 } else if (chunkSize < 0) { 371 366 throw new ArgumentException("ChunkSize must not be negativ."); … … 375 370 throw new ArgumentException("TimeLimit must not be negativ. "); 376 371 } 377 Benchmark Algorithm.TimeLimit = timelimit;378 Benchmark Algorithm.Run(cancellationToken, results);372 Benchmark.TimeLimit = timelimit; 373 Benchmark.Run(cancellationToken, results); 379 374 } 380 375 catch (OperationCanceledException) { … … 396 391 } 397 392 398 public v irtual void CollectResultValues(IDictionary<string, IItem> values) {393 public void CollectResultValues(IDictionary<string, IItem> values) { 399 394 values.Add("Execution Time", new TimeSpanValue(ExecutionTime)); 400 395 CollectResultsRecursively("", Results, values); … … 411 406 } 412 407 413 public v irtual void CollectParameterValues(IDictionary<string, IItem> values) {408 public void CollectParameterValues(IDictionary<string, IItem> values) { 414 409 foreach (IValueParameter param in parameters.OfType<IValueParameter>()) { 415 410 if (param.GetsCollected && param.Value != null) values.Add(param.Name, param.Value); … … 438 433 439 434 public event EventHandler ExecutionStateChanged; 440 pr otected virtualvoid OnExecutionStateChanged() {435 private void OnExecutionStateChanged() { 441 436 EventHandler handler = ExecutionStateChanged; 442 437 if (handler != null) handler(this, EventArgs.Empty); 443 438 } 444 439 public event EventHandler ExecutionTimeChanged; 445 pr otected virtualvoid OnExecutionTimeChanged() {440 private void OnExecutionTimeChanged() { 446 441 EventHandler handler = ExecutionTimeChanged; 447 442 if (handler != null) handler(this, EventArgs.Empty); 448 443 } 449 444 public event EventHandler ProblemChanged; 450 pr otected virtualvoid OnProblemChanged() {445 private void OnProblemChanged() { 451 446 EventHandler handler = ProblemChanged; 452 447 if (handler != null) handler(this, EventArgs.Empty); 453 448 } 454 449 public event EventHandler StoreAlgorithmInEachRunChanged; 455 pr otected virtualvoid OnStoreAlgorithmInEachRunChanged() {450 private void OnStoreAlgorithmInEachRunChanged() { 456 451 EventHandler handler = StoreAlgorithmInEachRunChanged; 457 452 if (handler != null) handler(this, EventArgs.Empty); 458 453 } 459 454 public event EventHandler Prepared; 460 pr otected virtualvoid OnPrepared() {455 private void OnPrepared() { 461 456 ExecutionState = ExecutionState.Prepared; 462 457 ExecutionTime = TimeSpan.Zero; … … 468 463 } 469 464 public event EventHandler Started; 470 pr otected virtualvoid OnStarted() {465 private void OnStarted() { 471 466 ExecutionState = ExecutionState.Started; 472 467 EventHandler handler = Started; … … 474 469 } 475 470 public event EventHandler Paused; 476 pr otected virtualvoid OnPaused() {471 private void OnPaused() { 477 472 ExecutionState = ExecutionState.Paused; 478 473 EventHandler handler = Paused; … … 480 475 } 481 476 public event EventHandler Stopped; 482 pr otected virtualvoid OnStopped() {477 private void OnStopped() { 483 478 ExecutionState = ExecutionState.Stopped; 484 479 foreach (IStatefulItem statefulObject in this.GetObjectGraphObjects().OfType<IStatefulItem>()) { … … 491 486 } 492 487 public event EventHandler<EventArgs<Exception>> ExceptionOccurred; 493 pr otected virtualvoid OnExceptionOccurred(Exception exception) {488 private void OnExceptionOccurred(Exception exception) { 494 489 EventHandler<EventArgs<Exception>> handler = ExceptionOccurred; 495 490 if (handler != null) handler(this, new EventArgs<Exception>(exception)); … … 497 492 498 493 public event EventHandler<CancelEventArgs<string>> NameChanging; 499 pr otected virtualvoid OnNameChanging(CancelEventArgs<string> e) {494 private void OnNameChanging(CancelEventArgs<string> e) { 500 495 var handler = NameChanging; 501 496 if (handler != null) handler(this, e); … … 503 498 504 499 public event EventHandler NameChanged; 505 pr otected virtualvoid OnNameChanged() {500 private void OnNameChanged() { 506 501 var handler = NameChanged; 507 502 if (handler != null) handler(this, EventArgs.Empty); … … 510 505 511 506 public event EventHandler DescriptionChanged; 512 pr otected virtualvoid OnDescriptionChanged() {507 private void OnDescriptionChanged() { 513 508 var handler = DescriptionChanged; 514 509 if (handler != null) handler(this, EventArgs.Empty); … … 516 511 517 512 public event EventHandler ItemImageChanged; 518 pr otected virtualvoid OnItemImageChanged() {513 private void OnItemImageChanged() { 519 514 EventHandler handler = ItemImageChanged; 520 515 if (handler != null) handler(this, EventArgs.Empty); 521 516 } 522 517 public event EventHandler ToStringChanged; 523 pr otected virtualvoid OnToStringChanged() {518 private void OnToStringChanged() { 524 519 EventHandler handler = ToStringChanged; 525 520 if (handler != null) handler(this, EventArgs.Empty); 526 521 } 527 522 528 pr otected virtualvoid DeregisterProblemEvents() {523 private void DeregisterProblemEvents() { 529 524 problem.OperatorsChanged -= new EventHandler(Problem_OperatorsChanged); 530 525 problem.Reset -= new EventHandler(Problem_Reset); 531 526 } 532 pr otected virtualvoid RegisterProblemEvents() {527 private void RegisterProblemEvents() { 533 528 problem.OperatorsChanged += new EventHandler(Problem_OperatorsChanged); 534 529 problem.Reset += new EventHandler(Problem_Reset); 535 530 } 536 pr otected virtualvoid Problem_OperatorsChanged(object sender, EventArgs e) { }537 pr otected virtualvoid Problem_Reset(object sender, EventArgs e) {531 private void Problem_OperatorsChanged(object sender, EventArgs e) { } 532 private void Problem_Reset(object sender, EventArgs e) { 538 533 Prepare(); 539 534 } 540 535 541 pr otected virtualvoid DeregisterRunsEvents() {536 private void DeregisterRunsEvents() { 542 537 runs.CollectionReset -= new CollectionItemsChangedEventHandler<IRun>(Runs_CollectionReset); 543 538 } 544 pr otected virtualvoid RegisterRunsEvents() {539 private void RegisterRunsEvents() { 545 540 runs.CollectionReset += new CollectionItemsChangedEventHandler<IRun>(Runs_CollectionReset); 546 541 } 547 pr otected virtualvoid Runs_CollectionReset(object sender, CollectionItemsChangedEventArgs<IRun> e) {542 private void Runs_CollectionReset(object sender, CollectionItemsChangedEventArgs<IRun> e) { 548 543 runsCounter = runs.Count; 549 544 } … … 554 549 555 550 public IDeepCloneable Clone(Cloner cloner) { 556 return new Benchmark (this, cloner);551 return new BenchmarkAlgorithm(this, cloner); 557 552 } 558 553 -
trunk/sources/HeuristicLab.Algorithms.Benchmarks/3.3/DhrystoneBenchmark.cs
r7201 r7246 31 31 32 32 namespace HeuristicLab.Algorithms.Benchmarks { 33 [Item("Dhrystone Algorithm", "Dhrystone benchmarkingalgorithm.")]33 [Item("Dhrystone Benchmark", "Dhrystone performance benchmark algorithm.")] 34 34 [StorableClass] 35 35 public class DhrystoneBenchmark : IBenchmark { 36 private bool stopBenchmark; 37 private CancellationToken cancellationToken; 38 39 public string ItemName { 40 get { return ItemAttribute.GetName(this.GetType()); } 41 } 42 public string ItemDescription { 43 get { return ItemAttribute.GetDescription(this.GetType()); } 44 } 45 public Version ItemVersion { 46 get { return ItemAttribute.GetVersion(this.GetType()); } 47 } 48 public static Image StaticItemImage { 49 get { return HeuristicLab.Common.Resources.VSImageLibrary.Event; } 50 } 51 public Image ItemImage { 52 get { return ItemAttribute.GetImage(this.GetType()); } 53 } 54 36 55 [Storable] 37 56 private byte[][] chunk; … … 48 67 } 49 68 50 private bool stopBenchmark;51 52 private CancellationToken cancellationToken;53 54 public string ItemName {55 get { return ItemAttribute.GetName(this.GetType()); }56 }57 58 public string ItemDescription {59 get { return ItemAttribute.GetDescription(this.GetType()); }60 }61 62 public Version ItemVersion {63 get { return ItemAttribute.GetVersion(this.GetType()); }64 }65 66 public static Image StaticItemImage {67 get { return HeuristicLab.Common.Resources.VSImageLibrary.Event; }68 }69 public Image ItemImage {70 get { return ItemAttribute.GetImage(this.GetType()); }71 }72 69 73 70 #region Benchmark Fields -
trunk/sources/HeuristicLab.Algorithms.Benchmarks/3.3/HeuristicLab.Algorithms.Benchmarks-3.3.csproj
r7006 r7246 84 84 <Reference Include="System" /> 85 85 <Reference Include="System.Core" /> 86 <Reference Include="System.Data" /> 86 87 <Reference Include="System.Drawing" /> 87 <Reference Include="System.Xml.Linq" />88 <Reference Include="System.Data.DataSetExtensions" />89 <Reference Include="Microsoft.CSharp" />90 <Reference Include="System.Data" />91 88 <Reference Include="System.Xml" /> 92 89 </ItemGroup> 93 90 <ItemGroup> 94 <Compile Include="Benchmark.cs"> 95 <SubType>Code</SubType> 96 </Compile> 91 <Compile Include="BenchmarkAlgorithm.cs" /> 97 92 <Compile Include="DhrystoneBenchmark.cs" /> 98 93 <Compile Include="IBenchmark.cs" /> … … 131 126 <Project>{BBAB9DF5-5EF3-4BA8-ADE9-B36E82114937}</Project> 132 127 <Name>HeuristicLab.Data-3.3</Name> 133 <Private>False</Private>134 </ProjectReference>135 <ProjectReference Include="..\..\HeuristicLab.Operators\3.3\HeuristicLab.Operators-3.3.csproj">136 <Project>{23DA7FF4-D5B8-41B6-AA96-F0561D24F3EE}</Project>137 <Name>HeuristicLab.Operators-3.3</Name>138 128 <Private>False</Private> 139 129 </ProjectReference> -
trunk/sources/HeuristicLab.Algorithms.Benchmarks/3.3/IBenchmark.cs
r7006 r7246 24 24 using HeuristicLab.Core; 25 25 using HeuristicLab.Optimization; 26 26 27 namespace HeuristicLab.Algorithms.Benchmarks { 27 28 public interface IBenchmark : IItem { 28 29 byte[][] ChunkData { get; set; } 29 30 TimeSpan TimeLimit { get; set; } 30 void Run(CancellationToken cancellationToken, ResultCollection resul s);31 void Run(CancellationToken cancellationToken, ResultCollection results); 31 32 } 32 33 } -
trunk/sources/HeuristicLab.Algorithms.Benchmarks/3.3/LinpackBenchmark.cs
r7201 r7246 31 31 32 32 namespace HeuristicLab.Algorithms.Benchmarks { 33 [Item("Linpack Algorithm", "Linpack benchmarkingalgorithm.")]33 [Item("Linpack Benchmark", "Linpack performance benchmark algorithm.")] 34 34 [StorableClass] 35 35 public class LinpackBenchmark : IBenchmark { -
trunk/sources/HeuristicLab.Algorithms.Benchmarks/3.3/Plugin.cs.frame
r7225 r7246 26 26 /// Plugin class for HeuristicLab.Algorithms.Benchmark plugin. 27 27 /// </summary> 28 [Plugin("HeuristicLab.Algorithms.Benchmarks", "Provides different benchmarking algorithms", "3.3.6.$WCREV$")]28 [Plugin("HeuristicLab.Algorithms.Benchmarks", "Provides different performance benchmark algorithms.", "3.3.6.$WCREV$")] 29 29 [PluginFile("HeuristicLab.Algorithms.Benchmarks-3.3.dll", PluginFileType.Assembly)] 30 30 [PluginDependency("HeuristicLab.Collections", "3.3")] … … 32 32 [PluginDependency("HeuristicLab.Common.Resources", "3.3")] 33 33 [PluginDependency("HeuristicLab.Core", "3.3")] 34 [PluginDependency("HeuristicLab.Data", "3.3")] 34 [PluginDependency("HeuristicLab.Data", "3.3")] 35 35 [PluginDependency("HeuristicLab.Optimization", "3.3")] 36 36 [PluginDependency("HeuristicLab.Parameters", "3.3")] 37 [PluginDependency("HeuristicLab.Persistence", "3.3")] 37 [PluginDependency("HeuristicLab.Persistence", "3.3")] 38 38 public class HeuristicLabAlgorithmsBenchmarksPlugin : PluginBase { 39 39 } -
trunk/sources/HeuristicLab.Algorithms.Benchmarks/3.3/Properties/AssemblyInfo.cs.frame
r7225 r7246 27 27 // associated with an assembly. 28 28 [assembly: AssemblyTitle("HeuristicLab.Algorithms.Benchmarks")] 29 [assembly: AssemblyDescription(" Benchmarking")]29 [assembly: AssemblyDescription("HeuristicLab performance benchmark algorithms")] 30 30 [assembly: AssemblyConfiguration("")] 31 31 [assembly: AssemblyCompany("")] … … 41 41 42 42 // The following GUID is for the ID of the typelib if this project is exposed to COM 43 [assembly: Guid(" 3E422463-0CE0-400D-9544-5C11D5818769")]43 [assembly: Guid("2C246561-1750-4770-BDB9-0FD89D844068")] 44 44 45 45 // Version information for an assembly consists of the following four values: -
trunk/sources/HeuristicLab.Algorithms.Benchmarks/3.3/WhetstoneBenchmark.cs
r7201 r7246 31 31 32 32 namespace HeuristicLab.Algorithms.Benchmarks { 33 [Item("Whetstone Algorithm", "Whetstone benchmarkingalgorithm.")]33 [Item("Whetstone Benchmark", "Whetstone performance benchmark algorithm.")] 34 34 [StorableClass] 35 35 public class WhetstoneBenchmark : IBenchmark {
Note: See TracChangeset
for help on using the changeset viewer.