OrderedField
typeclass F: OrderedField extends Field, AddOrderedGroup {
mul_preserves_nonnegativity(a: F, b: F) {
F.0 <= a and F.0 <= b implies F.0 <= a * b
}
}
A field with a total order compatible with the field operations.
add
Inherited from AddSemigroup.
add_associative
Inherited from AddSemigroup.
add_commutative
Inherited from AddCommSemigroup.
add_identity_left
Inherited from AddMonoid.