v0.2.0 #206

Merged
altavir merged 210 commits from dev into master 2021-02-21 16:33:25 +03:00
2 changed files with 3 additions and 2 deletions
Showing only changes of commit a0066bb6dd - Show all commits

View File

@ -5,5 +5,5 @@ plugins {
repositories.jcenter()
dependencies {
implementation(kotlin("compiler-embeddable"))
implementation(kotlin("compiler-embeddable", "1.4.10"))
}

View File

@ -1,6 +1,7 @@
package kscience.kmath.gsl
import kotlinx.cinterop.*
import kotlinx.cinterop.CPointer
import kotlinx.cinterop.pointed
import org.gnu.gsl.*
internal class GslRealVector(override val nativeHandle: CPointer<gsl_vector>) : GslVector<Double, gsl_vector>() {