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

io.rtron.math.analysis.function.univariate.pure.ConstantFunction.kt Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2019-2022 Chair of Geoinformatics, Technical University of Munich
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package io.rtron.math.analysis.function.univariate.pure

import com.github.kittinunf.result.Result
import io.rtron.math.analysis.function.univariate.UnivariateFunction
import io.rtron.math.range.Range

/**
 * Constant function of a [value] within a [domain].
 *
 * @param value constant's value
 * @param domain domain of the constant function
 */
data class ConstantFunction(
    val value: Double,
    override val domain: Range = Range.all()
) : UnivariateFunction() {

    // Properties and Initializers
    init {
        require(value.isFinite()) { "Value must be finite, but was $value." }
    }

    // Operators
    infix fun timesValue(other: Double): ConstantFunction = copy(value = this.value * other)

    // Methods
    override fun valueUnbounded(x: Double): Result = Result.success(value)

    override fun slopeUnbounded(x: Double): Result = Result.success(0.0)

    companion object {
        val ZERO = ConstantFunction(0.0)
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy