Here you can find the source of sqrt_double(double d)
public static final float sqrt_double(double d)
//package com.java2s; //License from project: Open Source License public class Main { public static final float sqrt_double(double d) { return (float) Math.sqrt(d); }//from w ww.jav a2 s . c om }