- Timestamp:
- 05/27/10 13:18:14 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.Problems.ExternalEvaluation/3.3
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.ExternalEvaluation/3.3
- Property svn:ignore
-
old new 2 2 bin 3 3 obj 4 HeuristicLabProblemsExternalEvaluationPlugin.cs
-
- Property svn:ignore
-
trunk/sources/HeuristicLab.Problems.ExternalEvaluation/3.3/Drivers/ExternalEvaluationDriver.cs
r3859 r3862 21 21 22 22 using System; 23 using System.Collections.Generic;24 using System.Linq;25 using System.Text;26 using Google.ProtocolBuffers;27 23 using HeuristicLab.Core; 28 24 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; -
trunk/sources/HeuristicLab.Problems.ExternalEvaluation/3.3/Drivers/ExternalEvaluationProcessDriver.cs
r3859 r3862 21 21 22 22 using System; 23 using System.Collections.Generic;24 using System.Text;25 23 using System.Diagnostics; 26 24 using System.IO; 27 using Google.ProtocolBuffers;28 25 using HeuristicLab.Core; 29 26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; … … 40 37 private ExternalEvaluationStreamDriver driver; 41 38 39 public LocalProcessDriver() : this(String.Empty, String.Empty) { } 42 40 public LocalProcessDriver(string executable, string arguments) 43 41 : base() { -
trunk/sources/HeuristicLab.Problems.ExternalEvaluation/3.3/Drivers/ExternalEvaluationStreamDriver.cs
r3859 r3862 21 21 22 22 using System; 23 using System.Collections.Generic;24 using System.Linq;25 using System.Text;26 23 using System.IO; 27 24 using Google.ProtocolBuffers; … … 38 35 private Stream output; 39 36 37 public ExternalEvaluationStreamDriver() : base() { } 40 38 public ExternalEvaluationStreamDriver(Stream input, Stream output) 41 39 : base() {
Note: See TracChangeset
for help on using the changeset viewer.