integrand

This commit is contained in:
Alexander Nozik 2021-03-12 19:29:06 +03:00
parent f449bdd58f
commit 52a942dbe2

View File

@ -0,0 +1,9 @@
package space.kscience.kmath.integration
import kotlin.reflect.KClass
public interface IntegrandFeature
public interface Integrand {
public fun <T : IntegrandFeature> getFeature(type: KClass<T>): T? = null
}