Dev #127

Merged
altavir merged 214 commits from dev into master 2020-08-11 08:33:21 +03:00
2 changed files with 3 additions and 5 deletions
Showing only changes of commit 6329722131 - Show all commits

View File

@ -58,12 +58,10 @@ interface NumericAlgebra<T> : Algebra<T> {
inline operator fun <A : Algebra<*>, R> A.invoke(block: A.() -> R): R = run(block)
/**
* Represents semispace, i.e. algebraic structure with associative binary operation called "addition" as well as
* Represents "semispace", i.e. algebraic structure with associative binary operation called "addition" as well as
* multiplication by scalars.
*
* In KMath groups are called spaces, and also define multiplication of element by [Number].
*
* @param T the type of element of this semigroup.
* @param T the type of element of this semispace.
*/
interface SpaceOperations<T> : Algebra<T> {
/**

View File

@ -1,7 +1,7 @@
package scientifik.kmath.structures
/**
* Specialized [MutableBuffer] implementation over [ShortBuffer].
* Specialized [MutableBuffer] implementation over [ShortArray].
*
* @property array the underlying array.
*/