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

commonTest.space.kscience.kmath.operations.RealFieldTest.kt Maven / Gradle / Ivy

package space.kscience.kmath.operations

import space.kscience.kmath.testutils.FieldVerifier
import kotlin.test.Test
import kotlin.test.assertEquals

internal class RealFieldTest {
    @Test
    fun verify() = FieldVerifier(RealField, 42.0, 66.0, 2.0, 5).verify()

    @Test
    fun testSqrt() {
        val sqrt = RealField { sqrt(25 * one) }
        assertEquals(5.0, sqrt)
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy