- Timestamp:
- 07/16/17 12:54:21 (7 years ago)
- Location:
- stable
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
- Property svn:mergeinfo changed
/trunk/sources merged: 15120
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Problems.ExternalEvaluation/3.4/Programmable/OptimizationSupportScript.cs
r14186 r15260 70 70 private set { compiledInstance = value; } 71 71 } 72 public dynamic Instance { 73 get { return compiledInstance; } 74 } 72 75 73 76 public override Assembly Compile() { -
stable/HeuristicLab.Problems.Programmable/3.3/ProblemDefinitionScript.cs
r14186 r15260 80 80 } 81 81 } 82 public dynamic Instance { 83 get { return compiledProblemDefinition; } 84 } 82 85 83 86 public sealed override Assembly Compile() { -
stable/HeuristicLab.Scripting/3.3/Scripts/CSharp/CSharpScript.cs
r14186 r15260 34 34 #region Fields & Properties 35 35 private CSharpScriptBase compiledScript; 36 public dynamic Instance { 37 get { return compiledScript; } 38 } 36 39 37 40 public string Filename { get; set; }
Note: See TracChangeset
for help on using the changeset viewer.