Skip to content

Commit

Permalink
Yet another bugfix release
Browse files Browse the repository at this point in the history
  Yes, I know
  • Loading branch information
superbobry committed Sep 21, 2016
1 parent e224e90 commit 00057e8
Show file tree
Hide file tree
Showing 243 changed files with 583 additions and 565 deletions.
8 changes: 8 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@ viktor Changelog

Here you can see the full list of changes between each viktor release.

Version 0.3.5
-------------

Bugfix release, released on September 21st 2016

- Fixed yet another bug, but this time in `StridedMatrix3.toString`.
Like they say, copy-paste is never a good thing.

Version 0.3.4
-------------

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ repositories {
}

dependencies {
compile 'org.jetbrains.bio:viktor:0.3.4'
compile 'org.jetbrains.bio:viktor:0.3.5'
}

```
Expand Down
8 changes: 0 additions & 8 deletions docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix2/-t.md

This file was deleted.

This file was deleted.

This file was deleted.

5 changes: 0 additions & 5 deletions docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix2/data.md

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

9 changes: 0 additions & 9 deletions docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix2/set.md

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

5 changes: 0 additions & 5 deletions docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix3/data.md

This file was deleted.

This file was deleted.

5 changes: 0 additions & 5 deletions docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix3/depth.md

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

9 changes: 0 additions & 9 deletions docs/0.3.4/org.jetbrains.bio.viktor/-strided-matrix3/set.md

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

File renamed without changes.
2 changes: 1 addition & 1 deletion docs/0.3.4/index.md → docs/0.3.5/index.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[0.3.4](.)
[0.3.5](.)

### Packages

Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [DenseVector](index.md) / [DENSE_SPLIT_SIZE](.)
[0.3.5](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [DenseVector](index.md) / [DENSE_SPLIT_SIZE](.)

# DENSE_SPLIT_SIZE

`const val DENSE_SPLIT_SIZE: Int` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/DenseVector.kt#L32)
`const val DENSE_SPLIT_SIZE: Int` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.5/src/main/kotlin/org/jetbrains/bio/viktor/DenseVector.kt#L32)

We only use SIMD operations on vectors larger than the split boundary.

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [DenseVector](index.md) / [<init>](.)
[0.3.5](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [DenseVector](index.md) / [<init>](.)

# <init>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [DenseVector](index.md) / [copyTo](.)
[0.3.5](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [DenseVector](index.md) / [copyTo](.)

# copyTo

`open fun copyTo(other: `[`StridedVector`](../-strided-vector/index.md)`): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/DenseVector.kt#L17)
`open fun copyTo(other: `[`StridedVector`](../-strided-vector/index.md)`): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.5/src/main/kotlin/org/jetbrains/bio/viktor/DenseVector.kt#L17)

Overrides [StridedVector.copyTo](../-strided-vector/copy-to.md)

Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [DenseVector](index.md) / [fill](.)
[0.3.5](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [DenseVector](index.md) / [fill](.)

# fill

`open fun fill(init: Double): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/DenseVector.kt#L13)
`open fun fill(init: Double): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.5/src/main/kotlin/org/jetbrains/bio/viktor/DenseVector.kt#L13)

Overrides [StridedVector.fill](../-strided-vector/fill.md)

Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [DenseVector](.)
[0.3.5](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [DenseVector](.)

# DenseVector

`open class DenseVector : `[`StridedVector`](../-strided-vector/index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/DenseVector.kt#L9)
`open class DenseVector : `[`StridedVector`](../-strided-vector/index.md) [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.5/src/main/kotlin/org/jetbrains/bio/viktor/DenseVector.kt#L9)

A contiguous strided vector.

Expand Down Expand Up @@ -82,7 +82,7 @@ Sergei Lebedev
| [sum](../-strided-vector/sum.md) | `open fun sum(): Double`<br>Returns the sum of the elements using balanced summation. |
| [times](../-strided-vector/times.md) | `operator fun times(other: `[`StridedVector`](../-strided-vector/index.md)`): <ERROR CLASS>`<br>`operator fun times(update: Double): <ERROR CLASS>` |
| [timesAssign](../-strided-vector/times-assign.md) | `open operator fun timesAssign(other: `[`StridedVector`](../-strided-vector/index.md)`): Unit`<br>`open operator fun timesAssign(update: Double): Unit` |
| [toString](../-strided-vector/to-string.md) | `open fun toString(): String` |
| [toString](../-strided-vector/to-string.md) | `fun toString(maxDisplay: Int, format: `[`DecimalFormat`](http://docs.oracle.com/javase/6/docs/api/java/text/DecimalFormat.html)` = DecimalFormat("#.####")): String`<br>`open fun toString(): String` |
| [transpose](../-strided-vector/transpose.md) | `fun transpose(): `[`StridedMatrix2`](../-strided-matrix2/index.md)<br>Constructs a column-vector view of this vector in O(1) time. |
| [unaryMinus](../-strided-vector/unary-minus.md) | `open operator fun unaryMinus(): `[`StridedVector`](../-strided-vector/index.md) |
| [unaryPlus](../-strided-vector/unary-plus.md) | `operator fun unaryPlus(): `[`StridedVector`](../-strided-vector/index.md) |
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [DenseVector](index.md) / [toArray](.)
[0.3.5](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [DenseVector](index.md) / [toArray](.)

# toArray

`open fun toArray(): <ERROR CLASS>` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/DenseVector.kt#L26)
`open fun toArray(): <ERROR CLASS>` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.5/src/main/kotlin/org/jetbrains/bio/viktor/DenseVector.kt#L26)

Overrides [StridedVector.toArray](../-strided-vector/to-array.md)

Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [DenseVector](index.md) / [unsafeIndex](.)
[0.3.5](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [DenseVector](index.md) / [unsafeIndex](.)

# unsafeIndex

`protected open fun unsafeIndex(pos: Int): Int` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/DenseVector.kt#L11)
`protected open fun unsafeIndex(pos: Int): Int` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.5/src/main/kotlin/org/jetbrains/bio/viktor/DenseVector.kt#L11)

Overrides [StridedVector.unsafeIndex](../-strided-vector/unsafe-index.md)

Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [FlatMatrixOps](index.md) / [argMax](.)
[0.3.5](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [FlatMatrixOps](index.md) / [argMax](.)

# argMax

`open fun argMax(): Int` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L88)
`open fun argMax(): Int` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.5/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L88)
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [FlatMatrixOps](index.md) / [argMin](.)
[0.3.5](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [FlatMatrixOps](index.md) / [argMin](.)

# argMin

`open fun argMin(): Int` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L92)
`open fun argMin(): Int` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.5/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L92)
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [FlatMatrixOps](index.md) / [checkDimensions](.)
[0.3.5](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [FlatMatrixOps](index.md) / [checkDimensions](.)

# checkDimensions

`abstract fun checkDimensions(other: T): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L78)
`abstract fun checkDimensions(other: T): Unit` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.5/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L78)

Ensures a given matrix has the same dimensions as this matrix.

Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[0.3.4](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [FlatMatrixOps](index.md) / [copy](.)
[0.3.5](../../index.md) / [org.jetbrains.bio.viktor](../index.md) / [FlatMatrixOps](index.md) / [copy](.)

# copy

`abstract fun copy(): T` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.4/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L75)
`abstract fun copy(): T` [(source)](https://github.com/JetBrains-Research/viktor/blob/0.3.5/src/main/kotlin/org/jetbrains/bio/viktor/StridedMatrix.kt#L75)

Returns the copy of this matrix.

Loading

0 comments on commit 00057e8

Please sign in to comment.