structure
definition
def or abbrev
ZMatchedTransceiverMeshCert
show as:
view Lean formalization →
formal statement (Lean)
92structure ZMatchedTransceiverMeshCert where
93 T_node_pos : 0 < T_node
94 latency_pos : 0 < latency_per_pair
95 agg_zero : aggregateThroughput 0 = 0
96 agg_succ : ∀ N, aggregateThroughput (N + 1) = aggregateThroughput N + T_node
97 agg_strict_mono : ∀ {N M : ℕ}, N < M → aggregateThroughput N < aggregateThroughput M
98 agg_double : ∀ N, aggregateThroughput (2 * N) = 2 * aggregateThroughput N
99 latency_constant : ∀ d₁ d₂, pairwiseLatency d₁ = pairwiseLatency d₂
100