mirror of
https://github.com/gonum/gonum.git
synced 2025-10-17 12:40:52 +08:00
19 lines
451 B
Go
19 lines
451 B
Go
// 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
|
|
|
|
import (
|
|
_ "testing"
|
|
|
|
"github.com/gonum/graph"
|
|
"github.com/gonum/graph/concrete"
|
|
)
|
|
|
|
var _ graph.Graph = &concrete.Graph{}
|
|
var _ graph.DirectedGraph = &concrete.Graph{}
|
|
var _ graph.MutableGraph = &concrete.Graph{}
|
|
|
|
// var _ gr.EdgeListGraph = &concrete.Graph{}
|