Skip to content

Commit

Permalink
rename package
Browse files Browse the repository at this point in the history
  • Loading branch information
sanity committed Oct 7, 2016
1 parent 75aabae commit d7669ed
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 17 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ You can use this library by adding a dependency for Gradle, Maven, SBT, Leininge
### Basic usage from Kotlin

```kotlin
import com.trystacks.pav.PairAdjacentViolators
import com.trystacks.pav.PairAdjacentViolators.*
import com.github.sanity.pav.PairAdjacentViolators
import com.github.sanity.pav.PairAdjacentViolators.*
// ...
val inputPoints = listOf(Point(3.0, 1.0), Point(4.0, 2.0), Point(5.0, 3.0), Point(8.0, 4.0))
val pav = PairAdjacentViolators(inputPoints)
Expand All @@ -43,8 +43,8 @@ println("Interpolated: ${interpolator(6.0)}")

### Basic usage from Java
```java
import com.trystacks.pav.*;
import com.trystacks.pav.PairAdjacentViolators.*;
import com.github.sanity.pav.*;
import com.github.sanity.pav.PairAdjacentViolators.*;
import kotlin.jvm.functions.*;
import java.util.*;

Expand All @@ -65,8 +65,8 @@ public class PAVTest {
```

### Full API documentation
* [0.1.7](https://jitpack.io/com/github/sanity/pairAdjacentViolators/0.1.7/javadoc/com.trystacks.pav/index.html)
* [SNAPSHOT](https://jitpack.io/com/github/sanity/pairAdjacentViolators/-SNAPSHOT/javadoc/com.trystacks.pav/index.html) (warning: This may take a while to load as it is rebuilt on-demand)
* [0.1.8](https://jitpack.io/com/github/sanity/pairAdjacentViolators/0.1.8/javadoc/com.github.sanity.pav/index.html)
* [SNAPSHOT](https://jitpack.io/com/github/sanity/pairAdjacentViolators/-SNAPSHOT/javadoc/com.github.sanity.pav/index.html) (warning: This may take a while to load as it is rebuilt on-demand)

### License
Released under the [LGPL](https://en.wikipedia.org/wiki/GNU_Lesser_General_Public_License) version 3 by [Ian Clarke](http://blog.locut.us/) of [Stacks](http://trystacks.com/).
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.trystacks.pav
package com.github.sanity.pav
/**
* Performs spline interpolation given a set of control points.
*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package com.trystacks.pav
package com.github.sanity.pav

import com.trystacks.pav.PairAdjacentViolators.InterpolationStrategy.SPLINE
import com.github.sanity.pav.PairAdjacentViolators.InterpolationStrategy.SPLINE

/**
* Implements the "pair adjacent violators" algorithm, also known as "pool adjacent violators", for isotonic regression.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.trystacks.pav
package com.github.sanity.pav

import java.util.*

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package com.trystacks.pav.examples
package com.github.sanity.pav.examples

import com.trystacks.pav.PairAdjacentViolators
import com.trystacks.pav.PairAdjacentViolators.Point
import com.github.sanity.pav.PairAdjacentViolators
import com.github.sanity.pav.PairAdjacentViolators.Point
import java.util.*

/**
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package com.trystacks.pav
package com.github.sanity.pav

import com.trystacks.pav.PairAdjacentViolators.PAVMode.DECREASING
import com.trystacks.pav.PairAdjacentViolators.Point
import com.github.sanity.pav.PairAdjacentViolators.PAVMode.DECREASING
import com.github.sanity.pav.PairAdjacentViolators.Point
import io.kotlintest.specs.FreeSpec

/**
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.trystacks.pav
package com.github.sanity.pav

import io.kotlintest.specs.FreeSpec

Expand Down

0 comments on commit d7669ed

Please sign in to comment.