All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.bixilon.kotlinglm.Constants.kt Maven / Gradle / Ivy

There is a newer version: 0.9.9.1-12
Show newest version
package de.bixilon.kotlinglm

import kotlin.math.max
import kotlin.math.ulp

/**
 * Created by GBarbieri on 14.12.2016.
 */


fun epsilon(a: Float, b: Float) = max(a.ulp, b.ulp)

fun epsilon(a: Double, b: Double) = max(a.ulp, b.ulp)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy