Changeset 13712 for branches/WebJobManager/HeuristicLab.Clients.Hive.WebJobManager/Models/AlgorithmContainer.cs
- Timestamp:
- 03/16/16 16:57:46 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/WebJobManager/HeuristicLab.Clients.Hive.WebJobManager/Models/AlgorithmContainer.cs
r13696 r13712 11 11 public IAlgorithm algo { get; set; } 12 12 public System.Random randy { get; set; } 13 14 public AlgorithmContainer(IAlgorithm al, System.Random r)13 public List<int[]> depth { get; set; } 14 public AlgorithmContainer(IAlgorithm al, List<int[]> d, int[] v, System.Random r) 15 15 { 16 16 algo = al; 17 depth = d; 18 depth.Add(v); 17 19 randy = r; 18 20 }
Note: See TracChangeset
for help on using the changeset viewer.