- Timestamp:
- 03/10/16 22:31:28 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Clients.OKB/3.3/RunCreation/OKBProblem.cs
r12012 r13684 20 20 #endregion 21 21 22 using System;23 using System.Collections.Generic;24 using System.Drawing;25 using System.IO;26 22 using HeuristicLab.Common; 27 23 using HeuristicLab.Core; … … 29 25 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 30 26 using HeuristicLab.Persistence.Default.Xml; 27 using System; 28 using System.Collections.Generic; 29 using System.Drawing; 30 using System.IO; 31 31 32 32 namespace HeuristicLab.Clients.OKB.RunCreation { … … 148 148 if (this.problemId != problemId) { 149 149 IHeuristicOptimizationProblem problem; 150 byte[] problemData = RunCreationClient. GetProblemData(problemId);150 byte[] problemData = RunCreationClient.Instance.GetProblemData(problemId); 151 151 using (MemoryStream stream = new MemoryStream(problemData)) { 152 152 problem = XmlParser.Deserialize<IHeuristicOptimizationProblem>(stream);
Note: See TracChangeset
for help on using the changeset viewer.