Class Job<TDuration>
- Namespace
- AlgorithmsSW.EdgeWeightedDigraph
- Assembly
- AlgorithmsSW.dll
Represents a job with a duration and dependencies on other jobs.
public class Job<TDuration>
Type Parameters
TDuration
The type of duration.
- Inheritance
-
Job<TDuration>
- Inherited Members
- Extension Methods
Constructors
Job(TDuration, IEnumerable<int>)
public Job(TDuration duration, IEnumerable<int> dependencies)
Parameters
duration
TDurationdependencies
IEnumerable<int>
Properties
Dependencies
public IEnumerable<int> Dependencies { get; }
Property Value
Duration
public TDuration Duration { get; set; }
Property Value
- TDuration