Files
gonum/graph/graphs/gen/gen.go
2017-08-16 13:54:16 +02:00

23 lines
553 B
Go

// Copyright ©2015 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"
import "gonum.org/v1/gonum/graph"
// GraphBuilder is a graph that can have nodes and edges added.
type GraphBuilder interface {
Has(graph.Node) bool
HasEdgeBetween(x, y graph.Node) bool
graph.Builder
}
func abs(a int) int {
if a < 0 {
return -a
}
return a
}