Merge branch 'dev' into mp-samplers

This commit is contained in:
Iaroslav Postovalov 2020-10-21 02:29:53 +07:00
commit 826ec727b7
No known key found for this signature in database
GPG Key ID: 46E15E4A31B3BCD7
11 changed files with 12 additions and 12 deletions

View File

@ -11,7 +11,7 @@
### Changed
- Package changed from `scientifik` to `kscience.kmath`.
- Gradle version: 6.6 -> 6.6.1
- Gradle version: 6.6 -> 6.7
- Minor exceptions refactor (throwing `IllegalArgumentException` by argument checks instead of `IllegalStateException`)
- `Polynomial` secondary constructor made function.
- Kotlin version: 1.3.72 -> 1.4.20-M1

View File

@ -178,8 +178,8 @@ repositories{
}
dependencies{
api("kscience.kmath:kmath-core:0.2.0-dev-1")
//api("kscience.kmath:kmath-core-jvm:0.2.0-dev-1") for jvm-specific version
api("kscience.kmath:kmath-core:${kmathVersion}")
//api("scientifik:kmath-core:${kmathVersion}") for 0.1.3 and earlier
}
```

View File

@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.6.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

View File

@ -11,9 +11,9 @@ kotlin.sourceSets {
jvmMain {
dependencies {
api("com.github.h0tk3y.betterParse:better-parse:0.4.0")
implementation("org.ow2.asm:asm:8.0.1")
implementation("org.ow2.asm:asm-commons:8.0.1")
implementation("com.github.h0tk3y.betterParse:better-parse:0.4.0")
}
}
}

View File

@ -1,4 +1,4 @@
package scietifik.kmath.asm
package kscience.kmath.asm
import kscience.kmath.asm.compile
import kscience.kmath.ast.mstInField

View File

@ -1,4 +1,4 @@
package scietifik.kmath.asm
package kscience.kmath.asm
import kscience.kmath.asm.compile
import kscience.kmath.ast.mstInField

View File

@ -1,4 +1,4 @@
package scietifik.kmath.asm
package kscience.kmath.asm
import kscience.kmath.asm.compile
import kscience.kmath.ast.mstInField

View File

@ -1,4 +1,4 @@
package scietifik.kmath.asm
package kscience.kmath.asm
import kscience.kmath.ast.mstInRing
import kscience.kmath.expressions.invoke

View File

@ -1,4 +1,4 @@
package scietifik.kmath.ast
package kscience.kmath.ast
import kscience.kmath.asm.compile
import kscience.kmath.asm.expression

View File

@ -1,4 +1,4 @@
package scietifik.kmath.ast
package kscience.kmath.ast
import kscience.kmath.ast.evaluate
import kscience.kmath.ast.parseMath

View File

@ -1,4 +1,4 @@
package scietifik.kmath.ast
package kscience.kmath.ast
import kscience.kmath.ast.evaluate
import kscience.kmath.ast.mstInField