mirror of
https://github.com/gonum/gonum.git
synced 2025-10-17 04:31:03 +08:00
Add LICENSE notices
This commit is contained in:
@@ -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 concrete
|
package concrete
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
@@ -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 concrete_test
|
package concrete_test
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
@@ -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 concrete
|
package concrete
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
@@ -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 concrete_test
|
package concrete_test
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
@@ -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 concrete
|
package concrete
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
@@ -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 concrete_test
|
package concrete_test
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
4
doc.go
4
doc.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 graph implements functions and interfaces to deal with formal discrete graphs. It aims to
|
Package graph implements functions and interfaces to deal with formal discrete graphs. It aims to
|
||||||
be first and foremost flexible, with speed as a strong second priority.
|
be first and foremost flexible, with speed as a strong second priority.
|
||||||
|
4
graph.go
4
graph.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 graph
|
package graph
|
||||||
|
|
||||||
// All a node needs to do is identify itself. This allows the user to pass in nodes more
|
// All a node needs to do is identify itself. This allows the user to pass in nodes more
|
||||||
|
@@ -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 search_test
|
package search_test
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
@@ -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 search
|
package search
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
@@ -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 search
|
package search
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
@@ -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 search
|
package search
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
@@ -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 search_test
|
package search_test
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
@@ -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 set
|
package set
|
||||||
|
|
||||||
// A disjoint set is a collection of non-overlapping sets. That is, for any two sets in the
|
// A disjoint set is a collection of non-overlapping sets. That is, for any two sets in the
|
||||||
|
@@ -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 set
|
package set
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
@@ -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 set
|
package set
|
||||||
|
|
||||||
import ()
|
import ()
|
||||||
|
@@ -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 set_test
|
package set_test
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
@@ -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 xifo
|
package xifo
|
||||||
|
|
||||||
import ()
|
import ()
|
||||||
|
@@ -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 xifo_test
|
package xifo_test
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
Reference in New Issue
Block a user