Feature/integration #250

Merged
altavir merged 4 commits from feature/integration into dev 2021-03-16 20:44:42 +03:00
Showing only changes of commit 52a942dbe2 - Show all commits

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
}