From b96df58db98180ef46aebd51e9035ed31de27a08 Mon Sep 17 00:00:00 2001 From: Vladimir Chalupecky Date: Thu, 21 Jun 2018 15:51:53 +0200 Subject: [PATCH] all: add missing copyright headers --- blas/testblas/benchsize.go | 4 ++++ blas/testblas/common_test.go | 4 ++++ blas/testblas/dgbmv.go | 4 ++++ blas/testblas/dgemm.go | 4 ++++ blas/testblas/dgemmbench.go | 4 ++++ blas/testblas/dgemv.go | 4 ++++ blas/testblas/dger.go | 4 ++++ blas/testblas/dsbmv.go | 4 ++++ blas/testblas/dspmv.go | 4 ++++ blas/testblas/dspr.go | 4 ++++ blas/testblas/dspr2.go | 4 ++++ blas/testblas/dsymm.go | 4 ++++ blas/testblas/dsymv.go | 4 ++++ blas/testblas/dsyr.go | 4 ++++ blas/testblas/dsyr2.go | 4 ++++ blas/testblas/dsyr2k.go | 4 ++++ blas/testblas/dsyrk.go | 4 ++++ blas/testblas/dtbmv.go | 4 ++++ blas/testblas/dtbsv.go | 4 ++++ blas/testblas/dtpmv.go | 4 ++++ blas/testblas/dtpsv.go | 4 ++++ blas/testblas/dtrmm.go | 4 ++++ blas/testblas/dtrmv.go | 4 ++++ blas/testblas/dtrsm.go | 4 ++++ blas/testblas/dtrsv.go | 4 ++++ blas/testblas/dtxmv.go | 4 ++++ blas/testblas/level2bench.go | 4 ++++ blas/testblas/ztpmv.go | 4 ++++ graph/ex/fdpclust/gn.go | 4 ++++ graph/ex/fdpclust/main.go | 4 ++++ lapack/testlapack/dpbtf2.go | 4 ++++ optimize/cg.go | 4 ++++ 32 files changed, 128 insertions(+) diff --git a/blas/testblas/benchsize.go b/blas/testblas/benchsize.go index 41d132be..dcb5cd92 100644 --- a/blas/testblas/benchsize.go +++ b/blas/testblas/benchsize.go @@ -1,3 +1,7 @@ +// Copyright ©2014 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 const ( diff --git a/blas/testblas/common_test.go b/blas/testblas/common_test.go index f60b87be..9c88b21c 100644 --- a/blas/testblas/common_test.go +++ b/blas/testblas/common_test.go @@ -1,3 +1,7 @@ +// Copyright ©2014 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 import ( diff --git a/blas/testblas/dgbmv.go b/blas/testblas/dgbmv.go index bd008bad..6d768ce4 100644 --- a/blas/testblas/dgbmv.go +++ b/blas/testblas/dgbmv.go @@ -1,3 +1,7 @@ +// Copyright ©2014 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 import ( diff --git a/blas/testblas/dgemm.go b/blas/testblas/dgemm.go index f4bcddd8..bfec8e58 100644 --- a/blas/testblas/dgemm.go +++ b/blas/testblas/dgemm.go @@ -1,3 +1,7 @@ +// Copyright ©2014 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 import ( diff --git a/blas/testblas/dgemmbench.go b/blas/testblas/dgemmbench.go index 76ed4276..7d51145e 100644 --- a/blas/testblas/dgemmbench.go +++ b/blas/testblas/dgemmbench.go @@ -1,3 +1,7 @@ +// Copyright ©2014 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 import ( diff --git a/blas/testblas/dgemv.go b/blas/testblas/dgemv.go index b6375d52..b0d6b3e2 100644 --- a/blas/testblas/dgemv.go +++ b/blas/testblas/dgemv.go @@ -1,3 +1,7 @@ +// Copyright ©2014 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 import ( diff --git a/blas/testblas/dger.go b/blas/testblas/dger.go index f99d2582..99bf2351 100644 --- a/blas/testblas/dger.go +++ b/blas/testblas/dger.go @@ -1,3 +1,7 @@ +// Copyright ©2014 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 import ( diff --git a/blas/testblas/dsbmv.go b/blas/testblas/dsbmv.go index 1a8c9c35..392f9796 100644 --- a/blas/testblas/dsbmv.go +++ b/blas/testblas/dsbmv.go @@ -1,3 +1,7 @@ +// Copyright ©2014 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 import ( diff --git a/blas/testblas/dspmv.go b/blas/testblas/dspmv.go index 352bc4a9..79fd07f5 100644 --- a/blas/testblas/dspmv.go +++ b/blas/testblas/dspmv.go @@ -1,3 +1,7 @@ +// Copyright ©2014 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 import ( diff --git a/blas/testblas/dspr.go b/blas/testblas/dspr.go index 25e0ee40..507246f8 100644 --- a/blas/testblas/dspr.go +++ b/blas/testblas/dspr.go @@ -1,3 +1,7 @@ +// Copyright ©2014 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 import ( diff --git a/blas/testblas/dspr2.go b/blas/testblas/dspr2.go index 40b0cd32..f2fcc5be 100644 --- a/blas/testblas/dspr2.go +++ b/blas/testblas/dspr2.go @@ -1,3 +1,7 @@ +// Copyright ©2014 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 import ( diff --git a/blas/testblas/dsymm.go b/blas/testblas/dsymm.go index 5e07e07d..bfe4bd03 100644 --- a/blas/testblas/dsymm.go +++ b/blas/testblas/dsymm.go @@ -1,3 +1,7 @@ +// Copyright ©2014 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 import ( diff --git a/blas/testblas/dsymv.go b/blas/testblas/dsymv.go index b3fd4ec2..4cfc4569 100644 --- a/blas/testblas/dsymv.go +++ b/blas/testblas/dsymv.go @@ -1,3 +1,7 @@ +// Copyright ©2014 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 import ( diff --git a/blas/testblas/dsyr.go b/blas/testblas/dsyr.go index 4c404794..a0bb075d 100644 --- a/blas/testblas/dsyr.go +++ b/blas/testblas/dsyr.go @@ -1,3 +1,7 @@ +// Copyright ©2014 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 import ( diff --git a/blas/testblas/dsyr2.go b/blas/testblas/dsyr2.go index e9069592..e68591fb 100644 --- a/blas/testblas/dsyr2.go +++ b/blas/testblas/dsyr2.go @@ -1,3 +1,7 @@ +// Copyright ©2014 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 import ( diff --git a/blas/testblas/dsyr2k.go b/blas/testblas/dsyr2k.go index 7c8600b5..991936f7 100644 --- a/blas/testblas/dsyr2k.go +++ b/blas/testblas/dsyr2k.go @@ -1,3 +1,7 @@ +// Copyright ©2014 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 import ( diff --git a/blas/testblas/dsyrk.go b/blas/testblas/dsyrk.go index 99e18ebb..0820ee80 100644 --- a/blas/testblas/dsyrk.go +++ b/blas/testblas/dsyrk.go @@ -1,3 +1,7 @@ +// Copyright ©2014 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 import ( diff --git a/blas/testblas/dtbmv.go b/blas/testblas/dtbmv.go index b0dee676..33ede7b2 100644 --- a/blas/testblas/dtbmv.go +++ b/blas/testblas/dtbmv.go @@ -1,3 +1,7 @@ +// Copyright ©2014 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 import ( diff --git a/blas/testblas/dtbsv.go b/blas/testblas/dtbsv.go index d3fad1ec..59d2327c 100644 --- a/blas/testblas/dtbsv.go +++ b/blas/testblas/dtbsv.go @@ -1,3 +1,7 @@ +// Copyright ©2014 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 import ( diff --git a/blas/testblas/dtpmv.go b/blas/testblas/dtpmv.go index 04af1641..0303c686 100644 --- a/blas/testblas/dtpmv.go +++ b/blas/testblas/dtpmv.go @@ -1,3 +1,7 @@ +// Copyright ©2014 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 import ( diff --git a/blas/testblas/dtpsv.go b/blas/testblas/dtpsv.go index 9fee545e..eb23450a 100644 --- a/blas/testblas/dtpsv.go +++ b/blas/testblas/dtpsv.go @@ -1,3 +1,7 @@ +// Copyright ©2014 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 import ( diff --git a/blas/testblas/dtrmm.go b/blas/testblas/dtrmm.go index 95cccec5..e52a7c54 100644 --- a/blas/testblas/dtrmm.go +++ b/blas/testblas/dtrmm.go @@ -1,3 +1,7 @@ +// Copyright ©2014 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 import ( diff --git a/blas/testblas/dtrmv.go b/blas/testblas/dtrmv.go index 8f3b6d35..a9e5aa95 100644 --- a/blas/testblas/dtrmv.go +++ b/blas/testblas/dtrmv.go @@ -1,3 +1,7 @@ +// Copyright ©2014 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 import ( diff --git a/blas/testblas/dtrsm.go b/blas/testblas/dtrsm.go index 9623397c..d5ec6258 100644 --- a/blas/testblas/dtrsm.go +++ b/blas/testblas/dtrsm.go @@ -1,3 +1,7 @@ +// Copyright ©2014 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 import ( diff --git a/blas/testblas/dtrsv.go b/blas/testblas/dtrsv.go index 1638177c..a0e7c34c 100644 --- a/blas/testblas/dtrsv.go +++ b/blas/testblas/dtrsv.go @@ -1,3 +1,7 @@ +// Copyright ©2014 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 import ( diff --git a/blas/testblas/dtxmv.go b/blas/testblas/dtxmv.go index c55da3bd..2cf68aca 100644 --- a/blas/testblas/dtxmv.go +++ b/blas/testblas/dtxmv.go @@ -1,3 +1,7 @@ +// Copyright ©2014 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 import ( diff --git a/blas/testblas/level2bench.go b/blas/testblas/level2bench.go index f85b61b1..6d58c120 100644 --- a/blas/testblas/level2bench.go +++ b/blas/testblas/level2bench.go @@ -1,3 +1,7 @@ +// Copyright ©2014 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 import ( diff --git a/blas/testblas/ztpmv.go b/blas/testblas/ztpmv.go index 3de8ed2e..e0184944 100644 --- a/blas/testblas/ztpmv.go +++ b/blas/testblas/ztpmv.go @@ -1,3 +1,7 @@ +// Copyright ©2018 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 import ( diff --git a/graph/ex/fdpclust/gn.go b/graph/ex/fdpclust/gn.go index b44457e8..befd5aa5 100644 --- a/graph/ex/fdpclust/gn.go +++ b/graph/ex/fdpclust/gn.go @@ -1,3 +1,7 @@ +// Copyright ©2014 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 main import ( diff --git a/graph/ex/fdpclust/main.go b/graph/ex/fdpclust/main.go index eb14226a..a1613e80 100644 --- a/graph/ex/fdpclust/main.go +++ b/graph/ex/fdpclust/main.go @@ -1,3 +1,7 @@ +// Copyright ©2014 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 main import ( diff --git a/lapack/testlapack/dpbtf2.go b/lapack/testlapack/dpbtf2.go index 2057e28c..003fcab3 100644 --- a/lapack/testlapack/dpbtf2.go +++ b/lapack/testlapack/dpbtf2.go @@ -1,3 +1,7 @@ +// 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 testlapack import ( diff --git a/optimize/cg.go b/optimize/cg.go index 88612d3f..ed571825 100644 --- a/optimize/cg.go +++ b/optimize/cg.go @@ -1,3 +1,7 @@ +// Copyright ©2014 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 optimize import (