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 algorithm, depth and random /// public class AlgorithmContainer { public IAlgorithm algo { get; set; } public System.Random randy { get; set; } public List depth { get; set; } public AlgorithmContainer(IAlgorithm al, List d, int[] v, System.Random r) { algo = al; depth = d; depth.Add(v); randy = r; } } }