- Timestamp:
- 08/24/10 02:37:56 (14 years ago)
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Services.OKB/3.3/ExperimentKit.cs
r4297 r4298 21 21 22 22 using System.Runtime.Serialization; 23 using HeuristicLab.Services.OKB.DataAccess; 23 24 24 namespace HeuristicLab.Services.OKB.DataAccess { 25 25 namespace HeuristicLab.Services.OKB { 26 /// <summary> 27 /// Contains an <see cref="Algorithm"/> and a <see cref="Problem"/> populated with all 28 /// required data to execute experiments. 29 /// </summary> 26 30 [DataContract] 27 31 public class ExperimentKit { 32 /// <summary> 33 /// Gets an <see cref="Algorithm"/> populated with all required data to execute 34 /// experiments. 35 /// </summary> 36 /// <value>An <see cref="Algorithm"/>.</value> 28 37 [DataMember] 29 38 public Algorithm Algorithm { get; set; } 30 39 40 /// <summary> 41 /// Gets a <see cref="Problem"/> populated with all required data to execute 42 /// experiments. 43 /// </summary> 44 /// <value>A <see cref="Problem"/>.</value> 31 45 [DataMember] 32 46 public Problem Problem { get; set; }
Note: See TracChangeset
for help on using the changeset viewer.