blob: 44ea48f3c17e40352c2fd4a269124b3c2ead7e9c [file] [log] [blame]
// 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 topo
import (
"fmt"
"testing"
"gonum.org/v1/gonum/graph"
"gonum.org/v1/gonum/graph/graphs/gen"
"gonum.org/v1/gonum/graph/simple"
)
var (
gnpDirected_10_tenth = gnpDirected(10, 0.1)
gnpDirected_100_tenth = gnpDirected(100, 0.1)
gnpDirected_1000_tenth = gnpDirected(1000, 0.1)
gnpDirected_10_half = gnpDirected(10, 0.5)
gnpDirected_100_half = gnpDirected(100, 0.5)
gnpDirected_1000_half = gnpDirected(1000, 0.5)
)
func gnpDirected(n int, p float64) graph.Directed {
g := simple.NewDirectedGraph()
err := gen.Gnp(g, n, p, nil)
if err != nil {
panic(fmt.Sprintf("topo: bad test: %v", err))
}
return g
}
func benchmarkTarjanSCC(b *testing.B, g graph.Directed) {
var sccs [][]graph.Node
for i := 0; i < b.N; i++ {
sccs = TarjanSCC(g)
}
if len(sccs) == 0 {
b.Fatal("unexpected number zero-sized SCC set")
}
}
func BenchmarkTarjanSCCGnp_10_tenth(b *testing.B) {
benchmarkTarjanSCC(b, gnpDirected_10_tenth)
}
func BenchmarkTarjanSCCGnp_100_tenth(b *testing.B) {
benchmarkTarjanSCC(b, gnpDirected_100_tenth)
}
func BenchmarkTarjanSCCGnp_1000_tenth(b *testing.B) {
benchmarkTarjanSCC(b, gnpDirected_1000_tenth)
}
func BenchmarkTarjanSCCGnp_10_half(b *testing.B) {
benchmarkTarjanSCC(b, gnpDirected_10_half)
}
func BenchmarkTarjanSCCGnp_100_half(b *testing.B) {
benchmarkTarjanSCC(b, gnpDirected_100_half)
}
func BenchmarkTarjanSCCGnp_1000_half(b *testing.B) {
benchmarkTarjanSCC(b, gnpDirected_1000_half)
}