mirror of
https://github.com/gonum/gonum.git
synced 2025-09-27 03:26:04 +08:00
all: fix capitalisation of Gonum
This fixes the capitalisation of Gonum where it refers to the project rather than the GitHub organisation or repository. The text of CONTRIBUTORS also is fixed to reflect the reality that contributors may have contributed to other repositories within the project.
This commit is contained in:
@@ -3,7 +3,7 @@ sudo: false
|
||||
language: go
|
||||
|
||||
# Do not move these lines; they are referred to by README.md.
|
||||
# Versions of go that are explicitly supported by gonum plus go tip.
|
||||
# Versions of go that are explicitly supported by Gonum, plus Go tip.
|
||||
go:
|
||||
- 1.13.x
|
||||
- 1.12.x
|
||||
|
2
AUTHORS
2
AUTHORS
@@ -1,4 +1,4 @@
|
||||
# This is the official list of gonum authors for copyright purposes.
|
||||
# This is the official list of Gonum authors for copyright purposes.
|
||||
# This file is distinct from the CONTRIBUTORS files.
|
||||
# See the latter for an explanation.
|
||||
|
||||
|
@@ -34,7 +34,7 @@ Where possible, the source of algorithms should be referenced in the comments.
|
||||
|
||||
## The Gonum Repositories
|
||||
|
||||
Here are the current repositories for the gonum project.
|
||||
Here are the current repositories for the Gonum project.
|
||||
If code you want to contribute doesn't quite fit in any of them, then please start a discussion on the [mailing list](https://groups.google.com/forum/#!forum/gonum-dev).
|
||||
Code can be found at [github.com/gonum/](https://github.com/gonum/)\<repo\>, and documentation at godoc.org/github.com/gonum/\<repo\>.
|
||||
|
||||
|
@@ -1,6 +1,6 @@
|
||||
# This is the official list of people who can contribute
|
||||
# (and typically have contributed) code to the gonum
|
||||
# repository.
|
||||
# (and typically have contributed) code to the Gonum
|
||||
# project.
|
||||
#
|
||||
# The AUTHORS file lists the copyright holders; this file
|
||||
# lists people. For example, Google employees would be listed here
|
||||
|
2
LICENSE
2
LICENSE
@@ -7,7 +7,7 @@ modification, are permitted provided that the following conditions are met:
|
||||
* Redistributions in binary form must reproduce the above copyright
|
||||
notice, this list of conditions and the following disclaimer in the
|
||||
documentation and/or other materials provided with the distribution.
|
||||
* Neither the name of the gonum project nor the names of its authors and
|
||||
* Neither the name of the Gonum project nor the names of its authors and
|
||||
contributors may be used to endorse or promote products derived from this
|
||||
software without specific prior written permission.
|
||||
|
||||
|
@@ -8,7 +8,7 @@
|
||||
\usepackage[margin=4cm]{geometry}
|
||||
|
||||
\title{Louvain algorithm for undirected and directed graphs}
|
||||
\author{The {\tt gonum} Authors}
|
||||
\author{The {\tt Gonum} Authors}
|
||||
|
||||
\begin{document}
|
||||
|
||||
|
@@ -135,12 +135,12 @@ func copyMultigraph(dst encoding.MultiBuilder, src *ast.Graph) (err error) {
|
||||
return err
|
||||
}
|
||||
|
||||
// A generator keeps track of the information required for generating a gonum
|
||||
// A generator keeps track of the information required for generating a Gonum
|
||||
// graph from a dot AST graph.
|
||||
type generator struct {
|
||||
// Directed graph.
|
||||
directed bool
|
||||
// Map from dot AST node ID to gonum node.
|
||||
// Map from dot AST node ID to Gonum node.
|
||||
ids map[string]graph.Node
|
||||
// Nodes processed within the context of a subgraph, that is to be used as a
|
||||
// vertex of an edge.
|
||||
@@ -152,7 +152,7 @@ type generator struct {
|
||||
graphAttr, nodeAttr, edgeAttr encoding.AttributeSetter
|
||||
}
|
||||
|
||||
// node returns the gonum node corresponding to the given dot AST node ID,
|
||||
// node returns the Gonum node corresponding to the given dot AST node ID,
|
||||
// generating a new such node if none exist.
|
||||
func (gen *generator) node(dst graph.NodeAdder, id string) graph.Node {
|
||||
if n, ok := gen.ids[id]; ok {
|
||||
|
@@ -4,6 +4,6 @@
|
||||
|
||||
The source code and any original content of the formats/dot directory is released under [Public Domain Dedication](https://creativecommons.org/publicdomain/zero/1.0/).
|
||||
|
||||
The source code is also licensed under the gonum license, and users are free to choose the license which suits their needs.
|
||||
The source code is also licensed under The Gonum License, and users are free to choose the license which suits their needs.
|
||||
|
||||
Please see gonum.org/v1/gonum for general license information, contributors, authors, etc on the Gonum suite of packages.
|
||||
|
@@ -1,4 +1,4 @@
|
||||
// This file is dual licensed under CC0 and The gonum license.
|
||||
// This file is dual licensed under CC0 and The Gonum License.
|
||||
//
|
||||
// Copyright ©2017 The Gonum Authors. All rights reserved.
|
||||
// Use of this source code is governed by a BSD-style
|
||||
|
@@ -1,4 +1,4 @@
|
||||
// This file is dual licensed under CC0 and The gonum license.
|
||||
// This file is dual licensed under CC0 and The Gonum License.
|
||||
//
|
||||
// Copyright ©2017 The Gonum Authors. All rights reserved.
|
||||
// Use of this source code is governed by a BSD-style
|
||||
|
@@ -1,4 +1,4 @@
|
||||
// This file is dual licensed under CC0 and The gonum license.
|
||||
// This file is dual licensed under CC0 and The Gonum License.
|
||||
//
|
||||
// Copyright ©2017 The Gonum Authors. All rights reserved.
|
||||
// Use of this source code is governed by a BSD-style
|
||||
|
@@ -1,4 +1,4 @@
|
||||
// This file is dual licensed under CC0 and The gonum license.
|
||||
// This file is dual licensed under CC0 and The Gonum License.
|
||||
//
|
||||
// Copyright ©2017 The Gonum Authors. All rights reserved.
|
||||
// Use of this source code is governed by a BSD-style
|
||||
|
@@ -1,4 +1,4 @@
|
||||
// This file is dual licensed under CC0 and The gonum license.
|
||||
// This file is dual licensed under CC0 and The Gonum License.
|
||||
//
|
||||
// Copyright ©2017 The Gonum Authors. All rights reserved.
|
||||
// Use of this source code is governed by a BSD-style
|
||||
|
@@ -1,6 +1,6 @@
|
||||
// Code generated by gocc; DO NOT EDIT.
|
||||
|
||||
// This file is dual licensed under CC0 and The gonum license.
|
||||
// This file is dual licensed under CC0 and The Gonum License.
|
||||
//
|
||||
// Copyright ©2017 The Gonum Authors. All rights reserved.
|
||||
// Use of this source code is governed by a BSD-style
|
||||
|
@@ -1,6 +1,6 @@
|
||||
// Code generated by gocc; DO NOT EDIT.
|
||||
|
||||
// This file is dual licensed under CC0 and The gonum license.
|
||||
// This file is dual licensed under CC0 and The Gonum License.
|
||||
//
|
||||
// Copyright ©2017 The Gonum Authors. All rights reserved.
|
||||
// Use of this source code is governed by a BSD-style
|
||||
|
@@ -1,6 +1,6 @@
|
||||
// Code generated by gocc; DO NOT EDIT.
|
||||
|
||||
// This file is dual licensed under CC0 and The gonum license.
|
||||
// This file is dual licensed under CC0 and The Gonum License.
|
||||
//
|
||||
// Copyright ©2017 The Gonum Authors. All rights reserved.
|
||||
// Use of this source code is governed by a BSD-style
|
||||
|
@@ -1,4 +1,4 @@
|
||||
// This file is dual licensed under CC0 and The gonum license.
|
||||
// This file is dual licensed under CC0 and The Gonum License.
|
||||
//
|
||||
// Copyright ©2017 The Gonum Authors. All rights reserved.
|
||||
// Use of this source code is governed by a BSD-style
|
||||
|
@@ -1,6 +1,6 @@
|
||||
// Code generated by gocc; DO NOT EDIT.
|
||||
|
||||
// This file is dual licensed under CC0 and The gonum license.
|
||||
// This file is dual licensed under CC0 and The Gonum License.
|
||||
//
|
||||
// Copyright ©2017 The Gonum Authors. All rights reserved.
|
||||
// Use of this source code is governed by a BSD-style
|
||||
|
@@ -1,6 +1,6 @@
|
||||
// Code generated by gocc; DO NOT EDIT.
|
||||
|
||||
// This file is dual licensed under CC0 and The gonum license.
|
||||
// This file is dual licensed under CC0 and The Gonum License.
|
||||
//
|
||||
// Copyright ©2017 The Gonum Authors. All rights reserved.
|
||||
// Use of this source code is governed by a BSD-style
|
||||
|
@@ -1,6 +1,6 @@
|
||||
// Code generated by gocc; DO NOT EDIT.
|
||||
|
||||
// This file is dual licensed under CC0 and The gonum license.
|
||||
// This file is dual licensed under CC0 and The Gonum License.
|
||||
//
|
||||
// Copyright ©2017 The Gonum Authors. All rights reserved.
|
||||
// Use of this source code is governed by a BSD-style
|
||||
|
@@ -1,6 +1,6 @@
|
||||
// Code generated by gocc; DO NOT EDIT.
|
||||
|
||||
// This file is dual licensed under CC0 and The gonum license.
|
||||
// This file is dual licensed under CC0 and The Gonum License.
|
||||
//
|
||||
// Copyright ©2017 The Gonum Authors. All rights reserved.
|
||||
// Use of this source code is governed by a BSD-style
|
||||
|
@@ -1,6 +1,6 @@
|
||||
// Code generated by gocc; DO NOT EDIT.
|
||||
|
||||
// This file is dual licensed under CC0 and The gonum license.
|
||||
// This file is dual licensed under CC0 and The Gonum License.
|
||||
//
|
||||
// Copyright ©2017 The Gonum Authors. All rights reserved.
|
||||
// Use of this source code is governed by a BSD-style
|
||||
|
@@ -1,4 +1,4 @@
|
||||
// This file is dual licensed under CC0 and The gonum license.
|
||||
// This file is dual licensed under CC0 and The Gonum License.
|
||||
//
|
||||
// Copyright ©2017 The Gonum Authors. All rights reserved.
|
||||
// Use of this source code is governed by a BSD-style
|
||||
|
@@ -1,6 +1,6 @@
|
||||
// Code generated by gocc; DO NOT EDIT.
|
||||
|
||||
// This file is dual licensed under CC0 and The gonum license.
|
||||
// This file is dual licensed under CC0 and The Gonum License.
|
||||
//
|
||||
// Copyright ©2017 The Gonum Authors. All rights reserved.
|
||||
// Use of this source code is governed by a BSD-style
|
||||
|
@@ -1,4 +1,4 @@
|
||||
// This file is dual licensed under CC0 and The gonum license.
|
||||
// This file is dual licensed under CC0 and The Gonum License.
|
||||
//
|
||||
// Copyright ©2017 The Gonum Authors. All rights reserved.
|
||||
// Use of this source code is governed by a BSD-style
|
||||
@@ -23,7 +23,7 @@ import (
|
||||
var location = []byte(`// Code generated by gocc; DO NOT EDIT.`)
|
||||
var copyright = []byte(`// Code generated by gocc; DO NOT EDIT.
|
||||
|
||||
// This file is dual licensed under CC0 and The gonum license.
|
||||
// This file is dual licensed under CC0 and The Gonum License.
|
||||
//
|
||||
// Copyright ©2017 The Gonum Authors. All rights reserved.
|
||||
// Use of this source code is governed by a BSD-style
|
||||
|
@@ -1,6 +1,6 @@
|
||||
// Code generated by gocc; DO NOT EDIT.
|
||||
|
||||
// This file is dual licensed under CC0 and The gonum license.
|
||||
// This file is dual licensed under CC0 and The Gonum License.
|
||||
//
|
||||
// Copyright ©2017 The Gonum Authors. All rights reserved.
|
||||
// Use of this source code is governed by a BSD-style
|
||||
|
@@ -1,6 +1,6 @@
|
||||
// Code generated by gocc; DO NOT EDIT.
|
||||
|
||||
// This file is dual licensed under CC0 and The gonum license.
|
||||
// This file is dual licensed under CC0 and The Gonum License.
|
||||
//
|
||||
// Copyright ©2017 The Gonum Authors. All rights reserved.
|
||||
// Use of this source code is governed by a BSD-style
|
||||
|
@@ -1,6 +1,6 @@
|
||||
// Code generated by gocc; DO NOT EDIT.
|
||||
|
||||
// This file is dual licensed under CC0 and The gonum license.
|
||||
// This file is dual licensed under CC0 and The Gonum License.
|
||||
//
|
||||
// Copyright ©2017 The Gonum Authors. All rights reserved.
|
||||
// Use of this source code is governed by a BSD-style
|
||||
|
@@ -1,4 +1,4 @@
|
||||
// This file is dual licensed under CC0 and The gonum license.
|
||||
// This file is dual licensed under CC0 and The Gonum License.
|
||||
//
|
||||
// Copyright ©2017 The Gonum Authors. All rights reserved.
|
||||
// Use of this source code is governed by a BSD-style
|
||||
|
@@ -3,7 +3,7 @@
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
// Package testgraph provides a set of testing helper functions
|
||||
// that test gonum graph interface implementations.
|
||||
// that test Gonum graph interface implementations.
|
||||
package testgraph // import "gonum.org/v1/gonum/graph/testgraph"
|
||||
|
||||
import (
|
||||
|
@@ -22,7 +22,7 @@
|
||||
//
|
||||
// The full LAPACK capability has not been implemented at present. The full
|
||||
// API is very large, containing approximately 200 functions for double precision
|
||||
// alone. Future additions will be focused on supporting the gonum matrix
|
||||
// alone. Future additions will be focused on supporting the Gonum matrix
|
||||
// package (https://godoc.org/github.com/gonum/matrix/mat64), though pull requests
|
||||
// with implementations and tests for LAPACK function are encouraged.
|
||||
package gonum // import "gonum.org/v1/gonum/lapack/gonum"
|
||||
|
@@ -3,7 +3,7 @@
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
// +build fortran
|
||||
// TODO(jonlawlor): remove fortran build tag when gonum only supports go 1.7+.
|
||||
// TODO(jonlawlor): remove fortran build tag when Gonum only supports go 1.7+.
|
||||
|
||||
package amoslib
|
||||
|
||||
|
Reference in New Issue
Block a user