metagraphoptimization.jl/test/known_graphs.jl

14 lines
292 B
Julia
Raw Normal View History

2023-06-22 17:24:35 +02:00
using MetagraphOptimization
using Test
function test_known_graphs()
g_ABAB = import_txt(joinpath(@__DIR__, "..", "examples", "AB->AB.txt"))
props = graph_properties(g_ABAB)
@test length(g_ABAB.nodes) == 34
@test props.compute_effort == 185
@test props.data == 102
end