Skip to content
Snippets Groups Projects
Commit 071f8c74 authored by Manos Koukoutos's avatar Manos Koukoutos
Browse files

Some min/max functions in lib

parent 4e9a690a
No related branches found
No related tags found
No related merge requests found
package leon
package object math {
def min(i1: Int, i2: Int) = if (i1 <= i2) i1 else i2
def max(i1: Int, i2: Int) = if (i1 >= i2) i1 else i2
def min(i1: BigInt, i2: BigInt) = if (i1 <= i2) i1 else i2
def max(i1: BigInt, i2: BigInt) = if (i1 >= i2) i1 else i2
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment