mirror of
https://github.com/gonum/gonum.git
synced 2025-10-06 15:47:01 +08:00
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:
@@ -2,7 +2,7 @@
|
|||||||
// Use of this source code is governed by a BSD-style
|
// Use of this source code is governed by a BSD-style
|
||||||
// license that can be found in the LICENSE file.
|
// license that can be found in the LICENSE file.
|
||||||
|
|
||||||
package path
|
package flow
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"flag"
|
"flag"
|
@@ -2,7 +2,7 @@
|
|||||||
// Use of this source code is governed by a BSD-style
|
// Use of this source code is governed by a BSD-style
|
||||||
// license that can be found in the LICENSE file.
|
// license that can be found in the LICENSE file.
|
||||||
|
|
||||||
package path
|
package flow
|
||||||
|
|
||||||
import "gonum.org/v1/gonum/graph"
|
import "gonum.org/v1/gonum/graph"
|
||||||
|
|
@@ -2,7 +2,7 @@
|
|||||||
// Use of this source code is governed by a BSD-style
|
// Use of this source code is governed by a BSD-style
|
||||||
// license that can be found in the LICENSE file.
|
// license that can be found in the LICENSE file.
|
||||||
|
|
||||||
package path
|
package flow
|
||||||
|
|
||||||
import "gonum.org/v1/gonum/graph"
|
import "gonum.org/v1/gonum/graph"
|
||||||
|
|
@@ -2,7 +2,7 @@
|
|||||||
// Use of this source code is governed by a BSD-style
|
// Use of this source code is governed by a BSD-style
|
||||||
// license that can be found in the LICENSE file.
|
// license that can be found in the LICENSE file.
|
||||||
|
|
||||||
package path
|
package flow
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"reflect"
|
"reflect"
|
6
graph/flow/doc.go
Normal file
6
graph/flow/doc.go
Normal 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"
|
Reference in New Issue
Block a user