- Timestamp:
- 05/27/10 15:41:35 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.Problems.ExternalEvaluation/3.3/Drivers
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.ExternalEvaluation/3.3/Drivers/ExternalEvaluationDriver.cs
r3862 r3864 27 27 [Item("ExternalEvaluationDriver", "Abstract base class for drivers to be used in an external evaluation problem.")] 28 28 [StorableClass] 29 public abstract class ExternalEvaluationDriver : Item, IExternalEvaluationDriver {29 public abstract class ExternalEvaluationDriver : NamedItem, IExternalEvaluationDriver { 30 30 // will not be serialized, since it will always be false after deserialization 31 31 public bool IsInitialized { get; protected set; } -
trunk/sources/HeuristicLab.Problems.ExternalEvaluation/3.3/Drivers/ExternalEvaluationProcessDriver.cs
r3862 r3864 29 29 [Item("ExternalEvaluationProcessDriver", "A driver for external evaluation problems that launches the external application in a new process.")] 30 30 [StorableClass] 31 public class LocalProcessDriver : ExternalEvaluationDriver {31 public class ExternalEvaluationProcessDriver : ExternalEvaluationDriver { 32 32 private Process process; 33 33 [Storable] … … 37 37 private ExternalEvaluationStreamDriver driver; 38 38 39 public LocalProcessDriver() : this(String.Empty, String.Empty) { }40 public LocalProcessDriver(string executable, string arguments)39 public ExternalEvaluationProcessDriver() : this(String.Empty, String.Empty) { } 40 public ExternalEvaluationProcessDriver(string executable, string arguments) 41 41 : base() { 42 42 this.executable = executable;
Note: See TracChangeset
for help on using the changeset viewer.