Free cookie consent management tool by TermsFeed Policy Generator

source: branches/WebJobManager/HeuristicLab.Clients.Hive.WebJobManager/Models/ExperimentContainer.cs @ 13696

Last change on this file since 13696 was 13696, checked in by jlodewyc, 8 years ago

#2582 Recursive views for Experiments and batch runs. Distribute child tasks start

File size: 611 bytes
Line 
1using HeuristicLab.Optimization;
2using System;
3using System.Collections.Generic;
4using System.Linq;
5using System.Threading.Tasks;
6
7namespace HeuristicLab.Clients.Hive.WebJobManager.Models
8{
9    public class ExperimentContainer
10    {
11        public Experiment exp { get; set; }
12        public List<int[]> depth { get; set; }
13        public System.Random randy { get; set; }
14
15        public ExperimentContainer(Experiment e, List<int[]> d, int[] v, System.Random r)
16        {
17            exp = e;
18            depth = d;
19            depth.Add(v);
20            randy = r;
21        }
22    }
23}
Note: See TracBrowser for help on using the repository browser.