2022-01-04 13:15:50 +03:00
|
|
|
rootProject.name = "kmath"
|
|
|
|
|
|
|
|
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
|
2022-06-12 15:16:40 +03:00
|
|
|
|
|
|
|
dependencyResolutionManagement {
|
|
|
|
val toolsVersion: String by extra
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenLocal()
|
|
|
|
maven("https://repo.kotlin.link")
|
|
|
|
mavenCentral()
|
|
|
|
gradlePluginPortal()
|
|
|
|
}
|
|
|
|
|
|
|
|
versionCatalogs {
|
|
|
|
create("npmlibs") {
|
|
|
|
from("ru.mipt.npm:version-catalog:$toolsVersion")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-20 22:09:07 +03:00
|
|
|
include(
|
2022-06-14 16:27:32 +03:00
|
|
|
":test-utils",
|
2019-02-20 12:54:39 +03:00
|
|
|
":kmath-memory",
|
2021-01-06 17:01:37 +03:00
|
|
|
":kmath-complex",
|
2019-01-04 18:12:28 +03:00
|
|
|
":kmath-core",
|
|
|
|
":kmath-coroutines",
|
2021-01-06 17:01:37 +03:00
|
|
|
":kmath-functions",
|
2019-02-13 18:21:51 +03:00
|
|
|
":kmath-histograms",
|
2019-01-13 10:42:53 +03:00
|
|
|
":kmath-commons",
|
2019-12-08 15:48:25 +03:00
|
|
|
":kmath-viktor",
|
2021-10-17 13:52:40 +03:00
|
|
|
":kmath-multik",
|
2021-10-20 16:06:45 +03:00
|
|
|
":kmath-tensorflow",
|
2021-08-16 09:55:03 +03:00
|
|
|
":kmath-optimization",
|
2020-10-28 09:16:21 +03:00
|
|
|
":kmath-stat",
|
2020-09-27 23:01:59 +03:00
|
|
|
":kmath-nd4j",
|
2019-06-21 12:34:04 +03:00
|
|
|
":kmath-dimensions",
|
2019-07-14 18:22:22 +03:00
|
|
|
":kmath-for-real",
|
2020-04-29 19:28:24 +03:00
|
|
|
":kmath-geometry",
|
2020-06-12 10:40:59 +03:00
|
|
|
":kmath-ast",
|
2020-10-12 16:26:03 +03:00
|
|
|
":kmath-ejml",
|
2020-10-28 14:37:21 +03:00
|
|
|
":kmath-kotlingrad",
|
2021-03-31 11:07:45 +03:00
|
|
|
":kmath-tensors",
|
2021-03-31 15:39:34 +03:00
|
|
|
":kmath-jupyter",
|
2021-05-21 11:47:35 +03:00
|
|
|
":kmath-symja",
|
2021-06-02 22:44:19 +03:00
|
|
|
":kmath-jafama",
|
2021-04-16 22:43:10 +03:00
|
|
|
":examples",
|
2021-07-03 13:11:47 +03:00
|
|
|
":benchmarks",
|
2022-06-12 15:16:40 +03:00
|
|
|
)
|