using HeuristicLab.Optimization; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace HeuristicLab.Clients.Hive.WebJobManager.Models { /// /// Used for file opening, contains experiment, depth and random /// public class ExperimentContainer { public Experiment exp { get; set; } public List depth { get; set; } public System.Random randy { get; set; } public ExperimentContainer(Experiment e, List d, int[] v, System.Random r) { exp = e; depth = d; depth.Add(v); randy = r; } } }