vstd::math

Function max

Source
pub open spec fn max(x: int, y: int) -> int
Expand description
{ if x >= y { x } else { y } }

This function computes the maximum of two given integers.