Merge remote-tracking branch 'origin/dev' into kotlin14

# Conflicts:
#	build.gradle.kts
#	kmath-core/build.gradle.kts
#	kmath-memory/build.gradle.kts
#	settings.gradle.kts
This commit is contained in:
Iaroslav Postovalov 2020-09-15 17:51:48 +07:00
commit 2d87108e78
No known key found for this signature in database
GPG Key ID: 70D5F4DCB0972F1B
3 changed files with 21 additions and 1 deletions

View File

@ -1,6 +1,18 @@
# KMath
## [Unreleased]
### Added
### Changed
### Deprecated
### Removed
### Fixed
### Security
## [0.1.4]
### Added
- Functional Expressions API

View File

@ -1,6 +1,6 @@
plugins { id("ru.mipt.npm.publish") apply false }
val kmathVersion: String by extra("0.1.4-dev-8")
val kmathVersion: String by extra("0.1.4")
val bintrayRepo: String by extra("scientifik")
val githubProject: String by extra("kmath")

View File

@ -0,0 +1,8 @@
package scientifik.kmath.operations
fun main() {
val res = BigIntField {
number(1) * 2
}
println("bigint:$res")
}