Table of Contents

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 TDuration
dependencies IEnumerable<int>

Properties

Dependencies

public IEnumerable<int> Dependencies { get; }

Property Value

IEnumerable<int>

Duration

public TDuration Duration { get; set; }

Property Value

TDuration