Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Judgment transitive_reachable at crates/formality-core/src/judgment/test_reachable.rs:23

Signature:

transitive_reachable(graph: Arc<Graph>, from: u32,) => u32

The number on each rule’s conclusion is positive coverage; the number on each premise is negative coverage. Click a number to browse the tests.

base
LineCoverageSource
31(s in graph.successors(*start))
──────── ("base")
332(transitive_reachable(graph, start) => s)
transitive
LineCoverageSource
37(transitive_reachable(graph, a) => b)
38(transitive_reachable(graph, b) => c)
──────── ("transitive")
402(transitive_reachable(graph, a) => c)