Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/24/10 02:37:56 (14 years ago)
Author:
swagner
Message:

Worked on OKB user authentication (#1167)

File:
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Services.OKB/3.3/ExperimentKit.cs

    r4297 r4298  
    2121
    2222using System.Runtime.Serialization;
     23using HeuristicLab.Services.OKB.DataAccess;
    2324
    24 namespace HeuristicLab.Services.OKB.DataAccess {
    25 
     25namespace 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>
    2630  [DataContract]
    2731  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>
    2837    [DataMember]
    2938    public Algorithm Algorithm { get; set; }
    3039
     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>
    3145    [DataMember]
    3246    public Problem Problem { get; set; }
Note: See TracChangeset for help on using the changeset viewer.