Keyboard shortcuts

Press or to navigate between chapters

Press ? to show this help

Press Esc to hide this help

Executable Frontier

Abstract

The executable frontier consists of pending nodes whose direct prerequisites are complete.

Theorem 1.1 (The complement frontier is exactly the ready pending set).

Proof. Machine-checked in Lean as D5/S3/ConceptDynamics/DagSemantics/ExecutableFrontier.mem_frontier_complement_iff (✓ std3). ∎

Source. Repository-derived.

Commentary.

A node belongs to the frontier computed over the complement of pending exactly when it is pending and none of its direct prerequisites remain pending.

The equivalence unfolds the definitions of executableFrontier and ReadyOver. It concerns direct prerequisites and does not replace them with arbitrary reachable ancestors.

References