kmath/CHANGELOG.md
Alexander Nozik 5032523bbf Merge remote-tracking branch 'origin/dev' into dev
# Conflicts:
#	build.gradle.kts
#	examples/src/main/kotlin/scientifik/kmath/linear/LinearAlgebraBenchmark.kt
#	kmath-ast/build.gradle.kts
#	kmath-ast/src/commonMain/kotlin/scientifik/kmath/ast/MstAlgebra.kt
#	kmath-commons/build.gradle.kts
#	kmath-core/src/commonMain/kotlin/scientifik/kmath/misc/AutoDiff.kt
#	kmath-core/src/commonMain/kotlin/scientifik/kmath/operations/Complex.kt
#	kmath-core/src/commonMain/kotlin/scientifik/kmath/structures/Buffers.kt
#	kmath-core/src/commonMain/kotlin/scientifik/kmath/structures/FlaggedBuffer.kt
#	kmath-core/src/commonMain/kotlin/scientifik/kmath/structures/IntBuffer.kt
#	kmath-core/src/commonMain/kotlin/scientifik/kmath/structures/RealBuffer.kt
#	kmath-core/src/commonMain/kotlin/scientifik/kmath/structures/ShortBuffer.kt
#	kmath-for-real/build.gradle.kts
#	kmath-functions/build.gradle.kts
#	kmath-memory/build.gradle.kts
#	kmath-prob/build.gradle.kts
2020-09-20 21:59:10 +03:00

2.3 KiB

KMath

[Unreleased]

Added

Changed

Deprecated

Removed

Fixed

Security

[0.1.4]

Added

  • Functional Expressions API
  • Mathematical Syntax Tree, its interpreter and API
  • String to MST parser (https://github.com/mipt-npm/kmath/pull/120)
  • MST to JVM bytecode translator (https://github.com/mipt-npm/kmath/pull/94)
  • FloatBuffer (specialized MutableBuffer over FloatArray)
  • FlaggedBuffer to associate primitive numbers buffer with flags (to mark values infinite or missing, etc.)
  • Specialized builder functions for all primitive buffers like IntBuffer(25) { it + 1 } (https://github.com/mipt-npm/kmath/pull/125)
  • Interface NumericAlgebra where number operation is available to convert numbers to algebraic elements
  • Inverse trigonometric functions support in ExtendedField (asin, acos, atan) (https://github.com/mipt-npm/kmath/pull/114)
  • New space extensions: average and averageWith
  • Local coding conventions
  • Geometric Domains API in kmath-core
  • Blocking chains in kmath-coroutines
  • Full hyperbolic functions support and default implementations within ExtendedField
  • Norm support for Complex

Changed

  • readAsMemory now has throws IOException in JVM signature.
  • Several functions taking functional types were made inline.
  • Several functions taking functional types now have callsInPlace contracts.
  • BigInteger and BigDecimal algebra: JBigDecimalField has companion object with default math context; minor optimizations
  • power(T, Int) extension function has preconditions and supports Field<T>
  • Memory objects have more preconditions (overflow checking)
  • tg function is renamed to tan (https://github.com/mipt-npm/kmath/pull/114)
  • Gradle version: 6.3 -> 6.6.1
  • Moved probability distributions to commons-rng and to kmath-prob

Fixed