diff --git a/blas/blas.go b/blas/blas.go index 8de23a4a..b292534d 100644 --- a/blas/blas.go +++ b/blas/blas.go @@ -4,109 +4,6 @@ //go:generate ./conversions.bash -/* -Package blas provides interfaces for the BLAS linear algebra standard. - -All methods must perform appropriate parameter checking and panic if -provided parameters that do not conform to the requirements specified -by the BLAS standard. - -Quick Reference Guide to the BLAS from http://www.netlib.org/lapack/lug/node145.html - -This version is modified to remove the "order" option. All matrix operations are -on row-order matrices. - -Level 1 BLAS - - dim scalar vector vector scalars 5-element prefixes - struct - - _rotg ( a, b ) S, D - _rotmg( d1, d2, a, b ) S, D - _rot ( n, x, incX, y, incY, c, s ) S, D - _rotm ( n, x, incX, y, incY, param ) S, D - _swap ( n, x, incX, y, incY ) S, D, C, Z - _scal ( n, alpha, x, incX ) S, D, C, Z, Cs, Zd - _copy ( n, x, incX, y, incY ) S, D, C, Z - _axpy ( n, alpha, x, incX, y, incY ) S, D, C, Z - _dot ( n, x, incX, y, incY ) S, D, Ds - _dotu ( n, x, incX, y, incY ) C, Z - _dotc ( n, x, incX, y, incY ) C, Z - __dot ( n, alpha, x, incX, y, incY ) Sds - _nrm2 ( n, x, incX ) S, D, Sc, Dz - _asum ( n, x, incX ) S, D, Sc, Dz - I_amax( n, x, incX ) s, d, c, z - -Level 2 BLAS - - options dim b-width scalar matrix vector scalar vector prefixes - - _gemv ( trans, m, n, alpha, a, lda, x, incX, beta, y, incY ) S, D, C, Z - _gbmv ( trans, m, n, kL, kU, alpha, a, lda, x, incX, beta, y, incY ) S, D, C, Z - _hemv ( uplo, n, alpha, a, lda, x, incX, beta, y, incY ) C, Z - _hbmv ( uplo, n, k, alpha, a, lda, x, incX, beta, y, incY ) C, Z - _hpmv ( uplo, n, alpha, ap, x, incX, beta, y, incY ) C, Z - _symv ( uplo, n, alpha, a, lda, x, incX, beta, y, incY ) S, D - _sbmv ( uplo, n, k, alpha, a, lda, x, incX, beta, y, incY ) S, D - _spmv ( uplo, n, alpha, ap, x, incX, beta, y, incY ) S, D - _trmv ( uplo, trans, diag, n, a, lda, x, incX ) S, D, C, Z - _tbmv ( uplo, trans, diag, n, k, a, lda, x, incX ) S, D, C, Z - _tpmv ( uplo, trans, diag, n, ap, x, incX ) S, D, C, Z - _trsv ( uplo, trans, diag, n, a, lda, x, incX ) S, D, C, Z - _tbsv ( uplo, trans, diag, n, k, a, lda, x, incX ) S, D, C, Z - _tpsv ( uplo, trans, diag, n, ap, x, incX ) S, D, C, Z - - options dim scalar vector vector matrix prefixes - - _ger ( m, n, alpha, x, incX, y, incY, a, lda ) S, D - _geru ( m, n, alpha, x, incX, y, incY, a, lda ) C, Z - _gerc ( m, n, alpha, x, incX, y, incY, a, lda ) C, Z - _her ( uplo, n, alpha, x, incX, a, lda ) C, Z - _hpr ( uplo, n, alpha, x, incX, ap ) C, Z - _her2 ( uplo, n, alpha, x, incX, y, incY, a, lda ) C, Z - _hpr2 ( uplo, n, alpha, x, incX, y, incY, ap ) C, Z - _syr ( uplo, n, alpha, x, incX, a, lda ) S, D - _spr ( uplo, n, alpha, x, incX, ap ) S, D - _syr2 ( uplo, n, alpha, x, incX, y, incY, a, lda ) S, D - _spr2 ( uplo, n, alpha, x, incX, y, incY, ap ) S, D - -Level 3 BLAS - - options dim scalar matrix matrix scalar matrix prefixes - - _gemm ( transA, transB, m, n, k, alpha, a, lda, b, ldb, beta, c, ldc ) S, D, C, Z - _symm ( side, uplo, m, n, alpha, a, lda, b, ldb, beta, c, ldc ) S, D, C, Z - _hemm ( side, uplo, m, n, alpha, a, lda, b, ldb, beta, c, ldc ) C, Z - _syrk ( uplo, trans, n, k, alpha, a, lda, beta, c, ldc ) S, D, C, Z - _herk ( uplo, trans, n, k, alpha, a, lda, beta, c, ldc ) C, Z - _syr2k( uplo, trans, n, k, alpha, a, lda, b, ldb, beta, c, ldc ) S, D, C, Z - _her2k( uplo, trans, n, k, alpha, a, lda, b, ldb, beta, c, ldc ) C, Z - _trmm ( side, uplo, transA, diag, m, n, alpha, a, lda, b, ldb ) S, D, C, Z - _trsm ( side, uplo, transA, diag, m, n, alpha, a, lda, b, ldb ) S, D, C, Z - -Meaning of prefixes - - S - float32 C - complex64 - D - float64 Z - complex128 - -Matrix types - - GE - GEneral GB - General Band - SY - SYmmetric SB - Symmetric Band SP - Symmetric Packed - HE - HErmitian HB - Hermitian Band HP - Hermitian Packed - TR - TRiangular TB - Triangular Band TP - Triangular Packed - -Options - - trans = NoTrans, Trans, ConjTrans - uplo = Upper, Lower - diag = Nonunit, Unit - side = Left, Right (A or op(A) on the left, or A or op(A) on the right) - -For real matrices, Trans and ConjTrans have the same meaning. -For Hermitian matrices, trans = Trans is not allowed. -For complex symmetric matrices, trans = ConjTrans is not allowed. -*/ package blas // import "gonum.org/v1/gonum/blas" // Flag constants indicate Givens transformation H matrix state. diff --git a/blas/blas32/blas32.go b/blas/blas32/blas32.go index ad1e430c..acac900e 100644 --- a/blas/blas32/blas32.go +++ b/blas/blas32/blas32.go @@ -2,7 +2,6 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// Package blas32 provides a simple interface to the float32 BLAS API. package blas32 // import "gonum.org/v1/gonum/blas/blas32" import ( diff --git a/blas/blas32/doc.go b/blas/blas32/doc.go new file mode 100644 index 00000000..d01a5162 --- /dev/null +++ b/blas/blas32/doc.go @@ -0,0 +1,6 @@ +// Copyright ©2017 The gonum Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package blas32 provides a simple interface to the float32 BLAS API. +package blas32 // import "gonum.org/v1/gonum/blas/blas32" diff --git a/blas/blas64/blas64.go b/blas/blas64/blas64.go index 072801bf..e2eb749d 100644 --- a/blas/blas64/blas64.go +++ b/blas/blas64/blas64.go @@ -2,7 +2,6 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// Package blas64 provides a simple interface to the float64 BLAS API. package blas64 // import "gonum.org/v1/gonum/blas/blas64" import ( diff --git a/blas/blas64/doc.go b/blas/blas64/doc.go new file mode 100644 index 00000000..92e588f8 --- /dev/null +++ b/blas/blas64/doc.go @@ -0,0 +1,6 @@ +// Copyright ©2017 The gonum Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package blas64 provides a simple interface to the float64 BLAS API. +package blas64 // import "gonum.org/v1/gonum/blas/blas64" diff --git a/blas/cblas128/cblas128.go b/blas/cblas128/cblas128.go index 1dd5bf0b..f1dd2b9d 100644 --- a/blas/cblas128/cblas128.go +++ b/blas/cblas128/cblas128.go @@ -2,7 +2,6 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// Package cblas128 provides a simple interface to the complex128 BLAS API. package cblas128 // import "gonum.org/v1/gonum/blas/cblas128" import ( diff --git a/blas/cblas128/doc.go b/blas/cblas128/doc.go new file mode 100644 index 00000000..15398184 --- /dev/null +++ b/blas/cblas128/doc.go @@ -0,0 +1,6 @@ +// Copyright ©2017 The gonum Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package cblas128 provides a simple interface to the complex128 BLAS API. +package cblas128 // import "gonum.org/v1/gonum/blas/cblas128" diff --git a/blas/cblas64/cblas64.go b/blas/cblas64/cblas64.go index 1e6d4a96..9c5f93c7 100644 --- a/blas/cblas64/cblas64.go +++ b/blas/cblas64/cblas64.go @@ -2,7 +2,6 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// Package cblas64 provides a simple interface to the complex64 BLAS API. package cblas64 // import "gonum.org/v1/gonum/blas/cblas64" import ( diff --git a/blas/cblas64/doc.go b/blas/cblas64/doc.go new file mode 100644 index 00000000..bb9c70b1 --- /dev/null +++ b/blas/cblas64/doc.go @@ -0,0 +1,6 @@ +// Copyright ©2017 The gonum Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package cblas64 provides a simple interface to the complex64 BLAS API. +package cblas64 // import "gonum.org/v1/gonum/blas/cblas64" diff --git a/blas/doc.go b/blas/doc.go new file mode 100644 index 00000000..99231c46 --- /dev/null +++ b/blas/doc.go @@ -0,0 +1,108 @@ +// Copyright ©2017 The gonum Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +/* +Package blas provides interfaces for the BLAS linear algebra standard. + +All methods must perform appropriate parameter checking and panic if +provided parameters that do not conform to the requirements specified +by the BLAS standard. + +Quick Reference Guide to the BLAS from http://www.netlib.org/lapack/lug/node145.html + +This version is modified to remove the "order" option. All matrix operations are +on row-order matrices. + +Level 1 BLAS + + dim scalar vector vector scalars 5-element prefixes + struct + + _rotg ( a, b ) S, D + _rotmg( d1, d2, a, b ) S, D + _rot ( n, x, incX, y, incY, c, s ) S, D + _rotm ( n, x, incX, y, incY, param ) S, D + _swap ( n, x, incX, y, incY ) S, D, C, Z + _scal ( n, alpha, x, incX ) S, D, C, Z, Cs, Zd + _copy ( n, x, incX, y, incY ) S, D, C, Z + _axpy ( n, alpha, x, incX, y, incY ) S, D, C, Z + _dot ( n, x, incX, y, incY ) S, D, Ds + _dotu ( n, x, incX, y, incY ) C, Z + _dotc ( n, x, incX, y, incY ) C, Z + __dot ( n, alpha, x, incX, y, incY ) Sds + _nrm2 ( n, x, incX ) S, D, Sc, Dz + _asum ( n, x, incX ) S, D, Sc, Dz + I_amax( n, x, incX ) s, d, c, z + +Level 2 BLAS + + options dim b-width scalar matrix vector scalar vector prefixes + + _gemv ( trans, m, n, alpha, a, lda, x, incX, beta, y, incY ) S, D, C, Z + _gbmv ( trans, m, n, kL, kU, alpha, a, lda, x, incX, beta, y, incY ) S, D, C, Z + _hemv ( uplo, n, alpha, a, lda, x, incX, beta, y, incY ) C, Z + _hbmv ( uplo, n, k, alpha, a, lda, x, incX, beta, y, incY ) C, Z + _hpmv ( uplo, n, alpha, ap, x, incX, beta, y, incY ) C, Z + _symv ( uplo, n, alpha, a, lda, x, incX, beta, y, incY ) S, D + _sbmv ( uplo, n, k, alpha, a, lda, x, incX, beta, y, incY ) S, D + _spmv ( uplo, n, alpha, ap, x, incX, beta, y, incY ) S, D + _trmv ( uplo, trans, diag, n, a, lda, x, incX ) S, D, C, Z + _tbmv ( uplo, trans, diag, n, k, a, lda, x, incX ) S, D, C, Z + _tpmv ( uplo, trans, diag, n, ap, x, incX ) S, D, C, Z + _trsv ( uplo, trans, diag, n, a, lda, x, incX ) S, D, C, Z + _tbsv ( uplo, trans, diag, n, k, a, lda, x, incX ) S, D, C, Z + _tpsv ( uplo, trans, diag, n, ap, x, incX ) S, D, C, Z + + options dim scalar vector vector matrix prefixes + + _ger ( m, n, alpha, x, incX, y, incY, a, lda ) S, D + _geru ( m, n, alpha, x, incX, y, incY, a, lda ) C, Z + _gerc ( m, n, alpha, x, incX, y, incY, a, lda ) C, Z + _her ( uplo, n, alpha, x, incX, a, lda ) C, Z + _hpr ( uplo, n, alpha, x, incX, ap ) C, Z + _her2 ( uplo, n, alpha, x, incX, y, incY, a, lda ) C, Z + _hpr2 ( uplo, n, alpha, x, incX, y, incY, ap ) C, Z + _syr ( uplo, n, alpha, x, incX, a, lda ) S, D + _spr ( uplo, n, alpha, x, incX, ap ) S, D + _syr2 ( uplo, n, alpha, x, incX, y, incY, a, lda ) S, D + _spr2 ( uplo, n, alpha, x, incX, y, incY, ap ) S, D + +Level 3 BLAS + + options dim scalar matrix matrix scalar matrix prefixes + + _gemm ( transA, transB, m, n, k, alpha, a, lda, b, ldb, beta, c, ldc ) S, D, C, Z + _symm ( side, uplo, m, n, alpha, a, lda, b, ldb, beta, c, ldc ) S, D, C, Z + _hemm ( side, uplo, m, n, alpha, a, lda, b, ldb, beta, c, ldc ) C, Z + _syrk ( uplo, trans, n, k, alpha, a, lda, beta, c, ldc ) S, D, C, Z + _herk ( uplo, trans, n, k, alpha, a, lda, beta, c, ldc ) C, Z + _syr2k( uplo, trans, n, k, alpha, a, lda, b, ldb, beta, c, ldc ) S, D, C, Z + _her2k( uplo, trans, n, k, alpha, a, lda, b, ldb, beta, c, ldc ) C, Z + _trmm ( side, uplo, transA, diag, m, n, alpha, a, lda, b, ldb ) S, D, C, Z + _trsm ( side, uplo, transA, diag, m, n, alpha, a, lda, b, ldb ) S, D, C, Z + +Meaning of prefixes + + S - float32 C - complex64 + D - float64 Z - complex128 + +Matrix types + + GE - GEneral GB - General Band + SY - SYmmetric SB - Symmetric Band SP - Symmetric Packed + HE - HErmitian HB - Hermitian Band HP - Hermitian Packed + TR - TRiangular TB - Triangular Band TP - Triangular Packed + +Options + + trans = NoTrans, Trans, ConjTrans + uplo = Upper, Lower + diag = Nonunit, Unit + side = Left, Right (A or op(A) on the left, or A or op(A) on the right) + +For real matrices, Trans and ConjTrans have the same meaning. +For Hermitian matrices, trans = Trans is not allowed. +For complex symmetric matrices, trans = ConjTrans is not allowed. +*/ +package blas // import "gonum.org/v1/gonum/blas" diff --git a/blas/testblas/benchautogen/autogen_bench_level1double.go b/blas/testblas/benchautogen/autogen_bench_level1double.go index 944a1ab7..e7ca0cf8 100644 --- a/blas/testblas/benchautogen/autogen_bench_level1double.go +++ b/blas/testblas/benchautogen/autogen_bench_level1double.go @@ -2,7 +2,6 @@ // Use of this code is governed by a BSD-style // license that can be found in the LICENSE file -// Script for automatic code generation of the benchmark routines package main import ( diff --git a/blas/testblas/benchautogen/doc.go b/blas/testblas/benchautogen/doc.go new file mode 100644 index 00000000..c7f3c6c6 --- /dev/null +++ b/blas/testblas/benchautogen/doc.go @@ -0,0 +1,6 @@ +// Copyright ©2017 The gonum Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Script for automatic code generation of the benchmark routines +package main // import "gonum.org/v1/gonum/blas/testblas/benchautogen" diff --git a/blas/testblas/doc.go b/blas/testblas/doc.go new file mode 100644 index 00000000..fc113147 --- /dev/null +++ b/blas/testblas/doc.go @@ -0,0 +1,6 @@ +// Copyright ©2017 The gonum Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package testblas provides tests for blas implementations. +package testblas // import "gonum.org/v1/gonum/blas/testblas" diff --git a/blas/testblas/level1double.go b/blas/testblas/level1double.go index 4a47542b..76a2fb33 100644 --- a/blas/testblas/level1double.go +++ b/blas/testblas/level1double.go @@ -2,7 +2,6 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// Package testblas provides tests for blas implementations. package testblas // import "gonum.org/v1/gonum/blas/testblas" import ( diff --git a/diff/fd/diff.go b/diff/fd/diff.go index 322e988d..63391c9f 100644 --- a/diff/fd/diff.go +++ b/diff/fd/diff.go @@ -2,7 +2,6 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// Package fd provides functions to approximate derivatives using finite differences. package fd // import "gonum.org/v1/gonum/diff/fd" import ( diff --git a/diff/fd/doc.go b/diff/fd/doc.go new file mode 100644 index 00000000..ec6fbb10 --- /dev/null +++ b/diff/fd/doc.go @@ -0,0 +1,6 @@ +// Copyright ©2017 The gonum Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package fd provides functions to approximate derivatives using finite differences. +package fd // import "gonum.org/v1/gonum/diff/fd" diff --git a/floats/doc.go b/floats/doc.go new file mode 100644 index 00000000..ec1c6724 --- /dev/null +++ b/floats/doc.go @@ -0,0 +1,6 @@ +// Copyright ©2017 The gonum Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package floats provides a set of helper routines for dealing with slices// of float64. The functions avoid allocations to allow for use within tight// loops without garbage collection overhead.//// The convention used is that when a slice is being modified in place, it has// the name dst. +package floats // import "gonum.org/v1/gonum/floats" diff --git a/floats/floats.go b/floats/floats.go index 32b645ba..8400ca85 100644 --- a/floats/floats.go +++ b/floats/floats.go @@ -2,12 +2,6 @@ // Use of this code is governed by a BSD-style // license that can be found in the LICENSE file -// Package floats provides a set of helper routines for dealing with slices -// of float64. The functions avoid allocations to allow for use within tight -// loops without garbage collection overhead. -// -// The convention used is that when a slice is being modified in place, it has -// the name dst. package floats // import "gonum.org/v1/gonum/floats" import ( diff --git a/graph/community/doc.go b/graph/community/doc.go new file mode 100644 index 00000000..2509606b --- /dev/null +++ b/graph/community/doc.go @@ -0,0 +1,6 @@ +// Copyright ©2017 The gonum Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package community provides graph community detection functions. +package community // import "gonum.org/v1/gonum/graph/community" diff --git a/graph/community/louvain_common.go b/graph/community/louvain_common.go index 6abedce9..90c7a484 100644 --- a/graph/community/louvain_common.go +++ b/graph/community/louvain_common.go @@ -2,7 +2,6 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// Package community provides graph community detection functions. package community // import "gonum.org/v1/gonum/graph/community" import ( diff --git a/graph/encoding/doc.go b/graph/encoding/doc.go new file mode 100644 index 00000000..1f51390f --- /dev/null +++ b/graph/encoding/doc.go @@ -0,0 +1,6 @@ +// Copyright ©2017 The gonum Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package encoding provides a common graph encoding API. +package encoding // import "gonum.org/v1/gonum/graph/encoding" diff --git a/graph/encoding/dot/doc.go b/graph/encoding/dot/doc.go new file mode 100644 index 00000000..e95310df --- /dev/null +++ b/graph/encoding/dot/doc.go @@ -0,0 +1,6 @@ +// Copyright ©2017 The gonum Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package dot implements GraphViz DOT marshaling and unmarshaling of graphs.//// See the GraphViz DOT Guide and the DOT grammar for more information// on using specific aspects of the DOT language://// DOT Guide: http://www.graphviz.org/Documentation/dotguide.pdf//// DOT grammar: http://www.graphviz.org/doc/info/lang.html// +package dot // import "gonum.org/v1/gonum/graph/encoding/dot" diff --git a/graph/encoding/dot/dot.go b/graph/encoding/dot/dot.go index 464afe6e..cc5e978e 100644 --- a/graph/encoding/dot/dot.go +++ b/graph/encoding/dot/dot.go @@ -2,13 +2,4 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// Package dot implements GraphViz DOT marshaling and unmarshaling of graphs. -// -// See the GraphViz DOT Guide and the DOT grammar for more information -// on using specific aspects of the DOT language: -// -// DOT Guide: http://www.graphviz.org/Documentation/dotguide.pdf -// -// DOT grammar: http://www.graphviz.org/doc/info/lang.html -// package dot // import "gonum.org/v1/gonum/graph/encoding/dot" diff --git a/graph/encoding/encoding.go b/graph/encoding/encoding.go index 4a6dab92..d819ce57 100644 --- a/graph/encoding/encoding.go +++ b/graph/encoding/encoding.go @@ -2,7 +2,6 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// Package encoding provides a common graph encoding API. package encoding // import "gonum.org/v1/gonum/graph/encoding" import "gonum.org/v1/gonum/graph" diff --git a/graph/encoding/graphql/doc.go b/graph/encoding/graphql/doc.go new file mode 100644 index 00000000..b47be6e8 --- /dev/null +++ b/graph/encoding/graphql/doc.go @@ -0,0 +1,6 @@ +// Copyright ©2017 The gonum Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package graphql implements JSON marshaling and unmarshaling of graph as// used by GraphQL +package graphql // import "gonum.org/v1/gonum/graph/encoding/graphql" diff --git a/graph/encoding/graphql/graphql.go b/graph/encoding/graphql/graphql.go index dd405034..fd2ac368 100644 --- a/graph/encoding/graphql/graphql.go +++ b/graph/encoding/graphql/graphql.go @@ -2,6 +2,4 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// Package graphql implements JSON marshaling and unmarshaling of graph as -// used by GraphQL package graphql // import "gonum.org/v1/gonum/graph/encoding/graphql" diff --git a/graph/formats/dot/ast/ast.go b/graph/formats/dot/ast/ast.go index 6ddfa11b..533f72fc 100644 --- a/graph/formats/dot/ast/ast.go +++ b/graph/formats/dot/ast/ast.go @@ -8,8 +8,6 @@ // This file is made available under a Creative Commons CC0 1.0 // Universal Public Domain Dedication. -// Package ast declares the types used to represent abstract syntax trees of -// Graphviz DOT graphs. package ast // import "gonum.org/v1/gonum/graph/formats/dot/ast" import ( diff --git a/graph/formats/dot/ast/doc.go b/graph/formats/dot/ast/doc.go new file mode 100644 index 00000000..1b7376a5 --- /dev/null +++ b/graph/formats/dot/ast/doc.go @@ -0,0 +1,6 @@ +// Copyright ©2017 The gonum Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package ast declares the types used to represent abstract syntax trees of// Graphviz DOT graphs. +package ast // import "gonum.org/v1/gonum/graph/formats/dot/ast" diff --git a/graph/formats/dot/doc.go b/graph/formats/dot/doc.go new file mode 100644 index 00000000..4337ff08 --- /dev/null +++ b/graph/formats/dot/doc.go @@ -0,0 +1,6 @@ +// Copyright ©2017 The gonum Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package dot implements a parser for Graphviz DOT files. +package dot // import "gonum.org/v1/gonum/graph/formats/dot" diff --git a/graph/formats/dot/dot.go b/graph/formats/dot/dot.go index 07967c7f..36b44308 100644 --- a/graph/formats/dot/dot.go +++ b/graph/formats/dot/dot.go @@ -10,7 +10,6 @@ //go:generate ./makeinternal.bash -// Package dot implements a parser for Graphviz DOT files. package dot // import "gonum.org/v1/gonum/graph/formats/dot" import ( diff --git a/graph/formats/dot/internal/astx/astx.go b/graph/formats/dot/internal/astx/astx.go index 925171fd..34479d93 100644 --- a/graph/formats/dot/internal/astx/astx.go +++ b/graph/formats/dot/internal/astx/astx.go @@ -8,8 +8,6 @@ // This file is made available under a Creative Commons CC0 1.0 // Universal Public Domain Dedication. -// Package astx implements utility functions for generating abstract syntax -// trees of Graphviz DOT graphs. package astx // import "gonum.org/v1/gonum/graph/formats/dot/internal/astx" import ( diff --git a/graph/formats/dot/internal/astx/doc.go b/graph/formats/dot/internal/astx/doc.go new file mode 100644 index 00000000..9037e099 --- /dev/null +++ b/graph/formats/dot/internal/astx/doc.go @@ -0,0 +1,6 @@ +// Copyright ©2017 The gonum Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package astx implements utility functions for generating abstract syntax// trees of Graphviz DOT graphs. +package astx // import "gonum.org/v1/gonum/graph/formats/dot/internal/astx" diff --git a/graph/graphs/gen/doc.go b/graph/graphs/gen/doc.go new file mode 100644 index 00000000..f5ebfcb5 --- /dev/null +++ b/graph/graphs/gen/doc.go @@ -0,0 +1,6 @@ +// Copyright ©2017 The gonum Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package gen provides random graph generation functions. +package gen // import "gonum.org/v1/gonum/graph/graphs/gen" diff --git a/graph/graphs/gen/gen.go b/graph/graphs/gen/gen.go index 6834ac6c..7fb852fc 100644 --- a/graph/graphs/gen/gen.go +++ b/graph/graphs/gen/gen.go @@ -2,7 +2,6 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// Package gen provides random graph generation functions. package gen // import "gonum.org/v1/gonum/graph/graphs/gen" import "gonum.org/v1/gonum/graph" diff --git a/graph/internal/linear/doc.go b/graph/internal/linear/doc.go new file mode 100644 index 00000000..8828a561 --- /dev/null +++ b/graph/internal/linear/doc.go @@ -0,0 +1,6 @@ +// Copyright ©2017 The gonum Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package linear provides common linear data structures. +package linear // import "gonum.org/v1/gonum/graph/internal/linear" diff --git a/graph/internal/linear/linear.go b/graph/internal/linear/linear.go index 191012ee..f08f985c 100644 --- a/graph/internal/linear/linear.go +++ b/graph/internal/linear/linear.go @@ -2,7 +2,6 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// Package linear provides common linear data structures. package linear // import "gonum.org/v1/gonum/graph/internal/linear" import ( diff --git a/graph/internal/ordered/doc.go b/graph/internal/ordered/doc.go new file mode 100644 index 00000000..8220c8fd --- /dev/null +++ b/graph/internal/ordered/doc.go @@ -0,0 +1,6 @@ +// Copyright ©2017 The gonum Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package ordered provides common sort ordering types. +package ordered // import "gonum.org/v1/gonum/graph/internal/ordered" diff --git a/graph/internal/ordered/sort.go b/graph/internal/ordered/sort.go index e0cce8ef..0a5af043 100644 --- a/graph/internal/ordered/sort.go +++ b/graph/internal/ordered/sort.go @@ -2,7 +2,6 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// Package ordered provides common sort ordering types. package ordered // import "gonum.org/v1/gonum/graph/internal/ordered" import "gonum.org/v1/gonum/graph" diff --git a/graph/internal/set/doc.go b/graph/internal/set/doc.go new file mode 100644 index 00000000..383615ef --- /dev/null +++ b/graph/internal/set/doc.go @@ -0,0 +1,6 @@ +// Copyright ©2017 The gonum Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package set provides integer and graph.Node sets. +package set // import "gonum.org/v1/gonum/graph/internal/set" diff --git a/graph/internal/set/set.go b/graph/internal/set/set.go index 1397dabb..004a5879 100644 --- a/graph/internal/set/set.go +++ b/graph/internal/set/set.go @@ -2,7 +2,6 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// Package set provides integer and graph.Node sets. package set // import "gonum.org/v1/gonum/graph/internal/set" import "gonum.org/v1/gonum/graph" diff --git a/graph/network/doc.go b/graph/network/doc.go new file mode 100644 index 00000000..c456f2da --- /dev/null +++ b/graph/network/doc.go @@ -0,0 +1,6 @@ +// Copyright ©2017 The gonum Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package network provides network analysis functions. +package network // import "gonum.org/v1/gonum/graph/network" diff --git a/graph/network/network.go b/graph/network/network.go index 13726c03..e664e8f3 100644 --- a/graph/network/network.go +++ b/graph/network/network.go @@ -10,5 +10,4 @@ // http://www.vldb.org/pvldb/vol7/p1023-maehara.pdf // * other centrality measures -// Package network provides network analysis functions. package network // import "gonum.org/v1/gonum/graph/network" diff --git a/graph/simple/doc.go b/graph/simple/doc.go new file mode 100644 index 00000000..c62a4723 --- /dev/null +++ b/graph/simple/doc.go @@ -0,0 +1,6 @@ +// Copyright ©2017 The gonum Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package simple provides a suite of simple graph implementations satisfying// the gonum/graph interfaces. +package simple // import "gonum.org/v1/gonum/graph/simple" diff --git a/graph/simple/simple.go b/graph/simple/simple.go index f64dc9c3..a6b0b5cb 100644 --- a/graph/simple/simple.go +++ b/graph/simple/simple.go @@ -2,8 +2,6 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// Package simple provides a suite of simple graph implementations satisfying -// the gonum/graph interfaces. package simple // import "gonum.org/v1/gonum/graph/simple" import ( diff --git a/graph/topo/doc.go b/graph/topo/doc.go new file mode 100644 index 00000000..ba1bf552 --- /dev/null +++ b/graph/topo/doc.go @@ -0,0 +1,6 @@ +// Copyright ©2017 The gonum Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package topo provides graph topology analysis functions. +package topo // import "gonum.org/v1/gonum/graph/topo" diff --git a/graph/topo/topo.go b/graph/topo/topo.go index ec2fb087..2c5fc9e9 100644 --- a/graph/topo/topo.go +++ b/graph/topo/topo.go @@ -2,7 +2,6 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// Package topo provides graph topology analysis functions. package topo // import "gonum.org/v1/gonum/graph/topo" import ( diff --git a/graph/traverse/doc.go b/graph/traverse/doc.go new file mode 100644 index 00000000..7bb3ca11 --- /dev/null +++ b/graph/traverse/doc.go @@ -0,0 +1,6 @@ +// Copyright ©2017 The gonum Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package traverse provides basic graph traversal primitives. +package traverse // import "gonum.org/v1/gonum/graph/traverse" diff --git a/graph/traverse/traverse.go b/graph/traverse/traverse.go index b6c82ac8..98e8b1c9 100644 --- a/graph/traverse/traverse.go +++ b/graph/traverse/traverse.go @@ -2,7 +2,6 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// Package traverse provides basic graph traversal primitives. package traverse // import "gonum.org/v1/gonum/graph/traverse" import ( diff --git a/integrate/quad/doc.go b/integrate/quad/doc.go new file mode 100644 index 00000000..c295e8c8 --- /dev/null +++ b/integrate/quad/doc.go @@ -0,0 +1,6 @@ +// Copyright ©2017 The gonum Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package quad provides numerical evaluation of definite integrals of single-variable functions.// +package quad // import "gonum.org/v1/gonum/integrate/quad" diff --git a/integrate/quad/quad.go b/integrate/quad/quad.go index 2f58358e..69786164 100644 --- a/integrate/quad/quad.go +++ b/integrate/quad/quad.go @@ -2,8 +2,6 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// Package quad provides numerical evaluation of definite integrals of single-variable functions. -// package quad // import "gonum.org/v1/gonum/integrate/quad" import ( diff --git a/internal/cmplx64/abs.go b/internal/cmplx64/abs.go index a4b22e1e..65b8c985 100644 --- a/internal/cmplx64/abs.go +++ b/internal/cmplx64/abs.go @@ -6,8 +6,6 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// Package cmplx64 provides complex64 versions of standard library math/cmplx -// package routines used by gonum/blas. package cmplx64 import math "gonum.org/v1/gonum/internal/math32" diff --git a/internal/cmplx64/doc.go b/internal/cmplx64/doc.go new file mode 100644 index 00000000..81b8911f --- /dev/null +++ b/internal/cmplx64/doc.go @@ -0,0 +1,6 @@ +// Copyright ©2017 The gonum Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package cmplx64 provides complex64 versions of standard library math/cmplx// package routines used by gonum/blas. +package cmplx64 // import "gonum.org/v1/gonum/internal/cmplx64" diff --git a/internal/math32/doc.go b/internal/math32/doc.go new file mode 100644 index 00000000..fe2b678e --- /dev/null +++ b/internal/math32/doc.go @@ -0,0 +1,6 @@ +// Copyright ©2017 The gonum Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package math32 provides float32 versions of standard library math package// routines used by gonum/blas/native. +package math32 // import "gonum.org/v1/gonum/internal/math32" diff --git a/internal/math32/math.go b/internal/math32/math.go index 658cb831..e5f90653 100644 --- a/internal/math32/math.go +++ b/internal/math32/math.go @@ -6,8 +6,6 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// Package math32 provides float32 versions of standard library math package -// routines used by gonum/blas/native. package math32 // import "gonum.org/v1/gonum/internal/math32" import ( diff --git a/lapack/lapack64/doc.go b/lapack/lapack64/doc.go new file mode 100644 index 00000000..f0fa800e --- /dev/null +++ b/lapack/lapack64/doc.go @@ -0,0 +1,6 @@ +// Copyright ©2017 The gonum Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package lapack64 provides a set of convenient wrapper functions for LAPACK// calls, as specified in the netlib standard (www.netlib.org).//// The native Go routines are used by default, and the Use function can be used// to set an alternative implementation.//// If the type of matrix (General, Symmetric, etc.) is known and fixed, it is// used in the wrapper signature. In many cases, however, the type of the matrix// changes during the call to the routine, for example the matrix is symmetric on// entry and is triangular on exit. In these cases the correct types should be checked// in the documentation.//// The full set of Lapack functions is very large, and it is not clear that a// full implementation is desirable, let alone feasible. Please open up an issue// if there is a specific function you need and/or are willing to implement. +package lapack64 // import "gonum.org/v1/gonum/lapack/lapack64" diff --git a/lapack/lapack64/lapack64.go b/lapack/lapack64/lapack64.go index cc37061f..94acb688 100644 --- a/lapack/lapack64/lapack64.go +++ b/lapack/lapack64/lapack64.go @@ -2,21 +2,6 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// Package lapack64 provides a set of convenient wrapper functions for LAPACK -// calls, as specified in the netlib standard (www.netlib.org). -// -// The native Go routines are used by default, and the Use function can be used -// to set an alternative implementation. -// -// If the type of matrix (General, Symmetric, etc.) is known and fixed, it is -// used in the wrapper signature. In many cases, however, the type of the matrix -// changes during the call to the routine, for example the matrix is symmetric on -// entry and is triangular on exit. In these cases the correct types should be checked -// in the documentation. -// -// The full set of Lapack functions is very large, and it is not clear that a -// full implementation is desirable, let alone feasible. Please open up an issue -// if there is a specific function you need and/or are willing to implement. package lapack64 // import "gonum.org/v1/gonum/lapack/lapack64" import ( diff --git a/mathext/internal/amos/amos.go b/mathext/internal/amos/amos.go index a3fb5b55..2bd74d43 100644 --- a/mathext/internal/amos/amos.go +++ b/mathext/internal/amos/amos.go @@ -2,7 +2,6 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// package amos implements functions originally in the Netlab code by Donald Amos. package amos import ( diff --git a/mathext/internal/amos/doc.go b/mathext/internal/amos/doc.go new file mode 100644 index 00000000..45182541 --- /dev/null +++ b/mathext/internal/amos/doc.go @@ -0,0 +1,6 @@ +// Copyright ©2017 The gonum Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// package amos implements functions originally in the Netlab code by Donald Amos. +package amos // import "gonum.org/v1/gonum/mathext/internal/amos" diff --git a/mathext/internal/cephes/cephes.go b/mathext/internal/cephes/cephes.go index e61f3465..6502ec93 100644 --- a/mathext/internal/cephes/cephes.go +++ b/mathext/internal/cephes/cephes.go @@ -2,7 +2,6 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// Package cephes implements functions originally in the Netlib code by Stephen Mosher. package cephes // import "gonum.org/v1/gonum/mathext/internal/cephes" import "math" diff --git a/mathext/internal/cephes/doc.go b/mathext/internal/cephes/doc.go new file mode 100644 index 00000000..4fe18ba6 --- /dev/null +++ b/mathext/internal/cephes/doc.go @@ -0,0 +1,6 @@ +// Copyright ©2017 The gonum Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package cephes implements functions originally in the Netlib code by Stephen Mosher. +package cephes // import "gonum.org/v1/gonum/mathext/internal/cephes" diff --git a/mathext/internal/gonum/doc.go b/mathext/internal/gonum/doc.go new file mode 100644 index 00000000..6a2c9520 --- /dev/null +++ b/mathext/internal/gonum/doc.go @@ -0,0 +1,6 @@ +// Copyright ©2017 The gonum Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// package gonum contains functions implemented by the gonum team. It is here to// avoid circular imports and/or double coding of functions. +package gonum // import "gonum.org/v1/gonum/mathext/internal/gonum" diff --git a/mathext/internal/gonum/gonum.go b/mathext/internal/gonum/gonum.go index 2aa56ca9..eae3e1c4 100644 --- a/mathext/internal/gonum/gonum.go +++ b/mathext/internal/gonum/gonum.go @@ -2,6 +2,4 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// package gonum contains functions implemented by the gonum team. It is here to -// avoid circular imports and/or double coding of functions. package gonum diff --git a/stat/combin/combin.go b/stat/combin/combin.go index 4bd75a34..b66fdaf8 100644 --- a/stat/combin/combin.go +++ b/stat/combin/combin.go @@ -2,8 +2,6 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// Package combin implements routines involving combinatorics (permutations, -// combinations, etc.). package combin // import "gonum.org/v1/gonum/stat/combin" import "math" diff --git a/stat/combin/doc.go b/stat/combin/doc.go new file mode 100644 index 00000000..d9981131 --- /dev/null +++ b/stat/combin/doc.go @@ -0,0 +1,6 @@ +// Copyright ©2017 The gonum Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package combin implements routines involving combinatorics (permutations,// combinations, etc.). +package combin // import "gonum.org/v1/gonum/stat/combin" diff --git a/stat/distmat/doc.go b/stat/distmat/doc.go new file mode 100644 index 00000000..baca067d --- /dev/null +++ b/stat/distmat/doc.go @@ -0,0 +1,6 @@ +// Copyright ©2017 The gonum Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package distmat provides probability distributions over matrices. +package distmat // import "gonum.org/v1/gonum/stat/distmat" diff --git a/stat/distmat/general.go b/stat/distmat/general.go index 7a834e66..bf70ccc7 100644 --- a/stat/distmat/general.go +++ b/stat/distmat/general.go @@ -2,7 +2,6 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// Package distmat provides probability distributions over matrices. package distmat // import "gonum.org/v1/gonum/stat/distmat" var badDim = "distmat: dimension mismatch" diff --git a/stat/distmv/doc.go b/stat/distmv/doc.go new file mode 100644 index 00000000..c126be97 --- /dev/null +++ b/stat/distmv/doc.go @@ -0,0 +1,6 @@ +// Copyright ©2017 The gonum Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package distmv provides multivariate random distribution types. +package distmv // import "gonum.org/v1/gonum/stat/distmv" diff --git a/stat/distmv/general.go b/stat/distmv/general.go index 9cb47eea..810f5e23 100644 --- a/stat/distmv/general.go +++ b/stat/distmv/general.go @@ -2,7 +2,6 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// Package distmv provides multivariate random distribution types. package distmv // import "gonum.org/v1/gonum/stat/distmv" var ( diff --git a/stat/distuv/doc.go b/stat/distuv/doc.go new file mode 100644 index 00000000..bdf073f5 --- /dev/null +++ b/stat/distuv/doc.go @@ -0,0 +1,6 @@ +// Copyright ©2017 The gonum Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package distuv provides univariate random distribution types. +package distuv // import "gonum.org/v1/gonum/stat/distuv" diff --git a/stat/distuv/general.go b/stat/distuv/general.go index d6717700..ffb62099 100644 --- a/stat/distuv/general.go +++ b/stat/distuv/general.go @@ -2,7 +2,6 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// Package distuv provides univariate random distribution types. package distuv // import "gonum.org/v1/gonum/stat/distuv" import "math" diff --git a/stat/doc.go b/stat/doc.go new file mode 100644 index 00000000..0225eef9 --- /dev/null +++ b/stat/doc.go @@ -0,0 +1,6 @@ +// Copyright ©2017 The gonum Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package stat provides generalized statistical functions. +package stat // import "gonum.org/v1/gonum/stat" diff --git a/stat/samplemv/doc.go b/stat/samplemv/doc.go new file mode 100644 index 00000000..59e95dc1 --- /dev/null +++ b/stat/samplemv/doc.go @@ -0,0 +1,6 @@ +// Copyright ©2017 The gonum Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package samplemv implements advanced sampling routines from explicit and implicit// probability distributions.//// Each sampling routine is implemented as a stateless function with a// complementary wrapper type. The wrapper types allow the sampling routines// to implement interfaces. +package samplemv // import "gonum.org/v1/gonum/stat/samplemv" diff --git a/stat/samplemv/samplemv.go b/stat/samplemv/samplemv.go index be878854..009833da 100644 --- a/stat/samplemv/samplemv.go +++ b/stat/samplemv/samplemv.go @@ -2,12 +2,6 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// Package samplemv implements advanced sampling routines from explicit and implicit -// probability distributions. -// -// Each sampling routine is implemented as a stateless function with a -// complementary wrapper type. The wrapper types allow the sampling routines -// to implement interfaces. package samplemv // import "gonum.org/v1/gonum/stat/samplemv" import ( diff --git a/stat/sampleuv/doc.go b/stat/sampleuv/doc.go new file mode 100644 index 00000000..426acde9 --- /dev/null +++ b/stat/sampleuv/doc.go @@ -0,0 +1,6 @@ +// Copyright ©2017 The gonum Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package sampleuv implements advanced sampling routines from explicit and implicit// probability distributions.//// Each sampling routine is implemented as a stateless function with a// complementary wrapper type. The wrapper types allow the sampling routines// to implement interfaces. +package sampleuv // import "gonum.org/v1/gonum/stat/sampleuv" diff --git a/stat/sampleuv/sample.go b/stat/sampleuv/sample.go index d3a6290b..5d5dd309 100644 --- a/stat/sampleuv/sample.go +++ b/stat/sampleuv/sample.go @@ -2,12 +2,6 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// Package sampleuv implements advanced sampling routines from explicit and implicit -// probability distributions. -// -// Each sampling routine is implemented as a stateless function with a -// complementary wrapper type. The wrapper types allow the sampling routines -// to implement interfaces. package sampleuv // import "gonum.org/v1/gonum/stat/sampleuv" import ( diff --git a/stat/stat.go b/stat/stat.go index 9b62f1ec..148edc9d 100644 --- a/stat/stat.go +++ b/stat/stat.go @@ -2,7 +2,6 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// Package stat provides generalized statistical functions. package stat // import "gonum.org/v1/gonum/stat" import (