Browse Source

update import paths

speter 10 years ago
parent
commit
c85f1217d5
5 changed files with 5 additions and 5 deletions
  1. 1 1
      dec.go
  2. 1 1
      dec_test.go
  3. 1 1
      example_test.go
  4. 1 1
      rounder_example_test.go
  5. 1 1
      rounder_test.go

+ 1 - 1
dec.go

@@ -20,7 +20,7 @@
 //  + combined operations such as AddRound/MulAdd etc
 //  + combined operations such as AddRound/MulAdd etc
 //  + exchanging data in decimal32/64/128 formats
 //  + exchanging data in decimal32/64/128 formats
 //
 //
-package inf
+package inf // import "gopkg.in/inf.v0"
 
 
 // TODO:
 // TODO:
 //  - avoid excessive deep copying (quo and rounders)
 //  - avoid excessive deep copying (quo and rounders)

+ 1 - 1
dec_test.go

@@ -8,7 +8,7 @@ import (
 	"strings"
 	"strings"
 	"testing"
 	"testing"
 
 
-	"speter.net/go/exp/math/dec/inf"
+	"gopkg.in/inf.v0"
 )
 )
 
 
 type decFunZZ func(z, x, y *inf.Dec) *inf.Dec
 type decFunZZ func(z, x, y *inf.Dec) *inf.Dec

+ 1 - 1
example_test.go

@@ -5,7 +5,7 @@ import (
 	"log"
 	"log"
 )
 )
 
 
-import "speter.net/go/exp/math/dec/inf"
+import "gopkg.in/inf.v0"
 
 
 func ExampleDec_SetString() {
 func ExampleDec_SetString() {
 	d := new(inf.Dec)
 	d := new(inf.Dec)

+ 1 - 1
rounder_example_test.go

@@ -5,7 +5,7 @@ import (
 	"os"
 	"os"
 	"text/tabwriter"
 	"text/tabwriter"
 
 
-	"speter.net/go/exp/math/dec/inf"
+	"gopkg.in/inf.v0"
 )
 )
 
 
 // This example displays the results of Dec.Round with each of the Rounders.
 // This example displays the results of Dec.Round with each of the Rounders.

+ 1 - 1
rounder_test.go

@@ -4,7 +4,7 @@ import (
 	"math/big"
 	"math/big"
 	"testing"
 	"testing"
 
 
-	"speter.net/go/exp/math/dec/inf"
+	"gopkg.in/inf.v0"
 )
 )
 
 
 var decRounderInputs = [...]struct {
 var decRounderInputs = [...]struct {