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

de.fraunhofer.iem.spha.model.adapter.tlc.TlcDefaultConfig.kt Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2024 Fraunhofer IEM. All rights reserved.
 *
 * Licensed under the MIT license. See LICENSE file in the project root for details.
 *
 * SPDX-License-Identifier: MIT
 * License-Filename: LICENSE
 */

package de.fraunhofer.iem.spha.model.adapter.tlc

object TlcDefaultConfig {
    fun get(): TlcConfig {
        return TlcConfig(
            listOf(
                RangeThreshold(score = 100, Range(from = 0, to = 60)),
                RangeThreshold(score = 75, Range(from = 61, to = 120)),
                RangeThreshold(score = 50, Range(from = 121, to = 180)),
                RangeThreshold(score = 25, Range(from = 181, to = 360)),
            )
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy