Free cookie consent management tool by TermsFeed Policy Generator

source: branches/WebJobManager/HeuristicLab.Clients.Hive.WebJobManager/Models/AlgorithmContainer.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: 490 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 AlgorithmContainer
10    {
11        public IAlgorithm algo { get; set; }
12        public System.Random randy { get; set; }
13
14        public AlgorithmContainer(IAlgorithm al, System.Random r)
15        {
16            algo = al;
17            randy = r;
18        }
19    }
20}
Note: See TracBrowser for help on using the repository browser.