Skip to content

Commit

Permalink
Meet 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
superbobry committed Jun 27, 2016
1 parent 331c8ea commit 5a62c9e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
2 changes: 2 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ Here you can see the full list of changes between each viktor release.
Version 0.3.0
-------------

Released on June 27th 2016

- Dropped dependency on Yeppp! and embedded a re-worked simdstat.
- Removed 'StridedVector.sumSq' in favour of 'dot'.
- Switched to balanced summation in pure-Kotlin versions of
Expand Down
6 changes: 1 addition & 5 deletions src/main/kotlin/org/jetbrains/bio/viktor/StridedVector.kt
Original file line number Diff line number Diff line change
Expand Up @@ -323,11 +323,7 @@ open class StridedVector internal constructor(
return Math.log(acc.result()) + offset
}

infix fun logAddExp(other: StridedVector): StridedVector {
val v = copy()
v.logAddExp(other, v)
return v
}
infix fun logAddExp(other: StridedVector) = copy().apply { logAddExp(other, this) }

open fun logAddExp(other: StridedVector, dst: StridedVector) {
checkSize(other)
Expand Down

0 comments on commit 5a62c9e

Please sign in to comment.