MCPcopy Create free account
hub / github.com/DoNewsCode/core / DAG

Struct DAG

dag/dag.go:26–28  ·  view source on GitHub ↗

DAG is a directed acyclic graph designed for job scheduling.

Source from the content-addressed store, hash-verified

24
25// DAG is a directed acyclic graph designed for job scheduling.
26type DAG struct {
27 vertexes []*vertex
28}
29
30// New creates a new DAG instance.
31func New() *DAG {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected