kmath/test-utils/src/commonMain/kotlin/AlgebraicVerifier.kt

15 lines
364 B
Kotlin
Raw Normal View History

/*
* Copyright 2018-2021 KMath contributors.
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
*/
2021-02-18 11:17:28 +03:00
package space.kscience.kmath.testutils
2021-02-18 11:17:28 +03:00
import space.kscience.kmath.operations.Algebra
internal interface AlgebraicVerifier<T, out A> where A : Algebra<T> {
val algebra: A
fun verify()
}