Skip to content

Commit 30b5c34

Browse files
committed
Disable EinExprs call to KaHyPar
1 parent 1f0e0a3 commit 30b5c34

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/test_contraction_sequence.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@eval module $(gensym())
2-
using EinExprs: Exhaustive, Greedy, HyPar
2+
using EinExprs: Exhaustive, Greedy
33
using ITensorNetworks:
44
contraction_sequence, norm_sqr_network, random_tensornetwork, siteinds
55
using ITensors: ITensors, contract
@@ -49,9 +49,9 @@ using Test: @test, @testset
4949
Pkg.rm("KaHyPar"; io=devnull)
5050
res_kahypar_bipartite = contract(tn; sequence=seq_kahypar_bipartite)[]
5151
@test res_optimal res_kahypar_bipartite
52-
seq_einexprs_kahypar = contraction_sequence(tn; alg="einexpr", optimizer=HyPar())
53-
res_einexprs_kahypar = contract(tn; sequence=seq_einexprs_kahypar)[]
54-
@test res_einexprs_kahypar res_optimal
52+
# seq_einexprs_kahypar = contraction_sequence(tn; alg="einexpr", optimizer=HyPar())
53+
# res_einexprs_kahypar = contract(tn; sequence=seq_einexprs_kahypar)[]
54+
# @test res_einexprs_kahypar ≈ res_optimal
5555
end
5656
end
5757
end

0 commit comments

Comments
 (0)