Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/10/16 22:31:28 (8 years ago)
Author:
abeham
Message:

#2588:

  • Returning id in add solution method
  • Added method to delete solutions
  • Added client methods in RunCreationClient that match the service methods
  • Made all service methods non-static in RunCreationClient
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Clients.OKB/3.3/RunCreation/OKBProblem.cs

    r12012 r13684  
    2020#endregion
    2121
    22 using System;
    23 using System.Collections.Generic;
    24 using System.Drawing;
    25 using System.IO;
    2622using HeuristicLab.Common;
    2723using HeuristicLab.Core;
     
    2925using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    3026using HeuristicLab.Persistence.Default.Xml;
     27using System;
     28using System.Collections.Generic;
     29using System.Drawing;
     30using System.IO;
    3131
    3232namespace HeuristicLab.Clients.OKB.RunCreation {
     
    148148      if (this.problemId != problemId) {
    149149        IHeuristicOptimizationProblem problem;
    150         byte[] problemData = RunCreationClient.GetProblemData(problemId);
     150        byte[] problemData = RunCreationClient.Instance.GetProblemData(problemId);
    151151        using (MemoryStream stream = new MemoryStream(problemData)) {
    152152          problem = XmlParser.Deserialize<IHeuristicOptimizationProblem>(stream);
Note: See TracChangeset for help on using the changeset viewer.