graph/flow: new package for (control) flow analysis

This is broken out from path to make room for the additional control
flow analysis routines that are currently being worked on.
This commit is contained in:
Dan Kortschak
2019-03-12 07:27:05 +10:30
parent 6747f05f2d
commit 60a68a3a7f
5 changed files with 10 additions and 4 deletions

View File

@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package path
package flow
import (
"flag"

View File

@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package path
package flow
import "gonum.org/v1/gonum/graph"

View File

@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package path
package flow
import "gonum.org/v1/gonum/graph"

View File

@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package path
package flow
import (
"reflect"

6
graph/flow/doc.go Normal file
View File

@@ -0,0 +1,6 @@
// Copyright ©2019 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 flow provides control flow analysis functions.
package flow // import "gonum.org/v1/gonum/graph/flow"