Rev | Line | |
---|
[13696] | 1 | using HeuristicLab.Optimization;
|
---|
| 2 | using System;
|
---|
| 3 | using System.Collections.Generic;
|
---|
| 4 | using System.Linq;
|
---|
| 5 | using System.Threading.Tasks;
|
---|
| 6 |
|
---|
| 7 | namespace HeuristicLab.Clients.Hive.WebJobManager.Models
|
---|
| 8 | {
|
---|
[13733] | 9 | /// <summary>
|
---|
| 10 | /// Used for file opening, contains experiment, depth and random
|
---|
| 11 | /// </summary>
|
---|
[13696] | 12 | public class ExperimentContainer
|
---|
| 13 | {
|
---|
| 14 | public Experiment exp { get; set; }
|
---|
| 15 | public List<int[]> depth { get; set; }
|
---|
| 16 | public System.Random randy { get; set; }
|
---|
| 17 |
|
---|
| 18 | public ExperimentContainer(Experiment e, List<int[]> d, int[] v, System.Random r)
|
---|
| 19 | {
|
---|
| 20 | exp = e;
|
---|
| 21 | depth = d;
|
---|
| 22 | depth.Add(v);
|
---|
| 23 | randy = r;
|
---|
| 24 | }
|
---|
| 25 | }
|
---|
| 26 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.