MCPcopy Create free account
hub / github.com/argumentcomputer/ix / univ_geq

Function univ_geq

crates/kernel/src/level.rs:701–705  ·  view source on GitHub ↗

Check `u ≥ v` for all parameter assignments.

(u: &KUniv<M>, v: &KUniv<M>)

Source from the content-addressed store, hash-verified

699 _ => return false,
700 }
701 }
702}
703
704/// Normalize a universe level to Géran's canonical form.
705fn normalize_level<M: KernelMode>(l: &KUniv<M>) -> NormLevel {
706 let mut acc = NormLevel::new();
707 acc.insert(Vec::new(), Node::default());
708 normalize_aux(l, &[], 0, &mut acc);

Callers 1

check_field_universesMethod · 0.85

Calls 4

norm_level_leFunction · 0.85
is_zeroMethod · 0.80
normalize_levelFunction · 0.70
hash_eqMethod · 0.45

Tested by

no test coverage detected