Here you can find the source of minimum(float first, float second)
public static float minimum(float first, float second)
//package com.java2s; public class Main { public static float minimum(float first, float second) { if (first < second) return first; else/*www .ja va 2 s. com*/ return second; } }