Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/16/16 16:57:46 (8 years ago)
Author:
jlodewyc
Message:

#2582 Distribution childs and priority done. Display current jobs and start graphs

Location:
branches/WebJobManager/HeuristicLab.Clients.Hive.WebJobManager/Models
Files:
1 added
1 edited

Legend:

Unmodified
Added
Removed
  • branches/WebJobManager/HeuristicLab.Clients.Hive.WebJobManager/Models/AlgorithmContainer.cs

    r13696 r13712  
    1111        public IAlgorithm algo { get; set; }
    1212        public System.Random randy { get; set; }
    13 
    14         public AlgorithmContainer(IAlgorithm al, System.Random r)
     13        public List<int[]> depth { get; set; }
     14        public AlgorithmContainer(IAlgorithm al, List<int[]> d, int[] v, System.Random r)
    1515        {
    1616            algo = al;
     17            depth = d;
     18            depth.Add(v);
    1719            randy = r;
    1820        }
Note: See TracChangeset for help on using the changeset viewer.