From 7ff4f8cf8eeaedb9821c8fd96eb00059e130bd03 Mon Sep 17 00:00:00 2001 From: Benjamin Lorenz Date: Fri, 14 Jul 2023 09:50:01 +0200 Subject: [PATCH] Update src/PolyhedralGeometry/triangulations.jl --- src/PolyhedralGeometry/triangulations.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PolyhedralGeometry/triangulations.jl b/src/PolyhedralGeometry/triangulations.jl index 8186e013d913..5342e09bdc97 100644 --- a/src/PolyhedralGeometry/triangulations.jl +++ b/src/PolyhedralGeometry/triangulations.jl @@ -1,7 +1,7 @@ using JSON using TOPCOM_jll -function _postprocess_polymake_triangs(triangs::Polymake.LibPolymake.Array{Polymake.LibPolymake.Set{Polymake.LibPolymake.Set{Int}}}) +function _postprocess_polymake_triangs(triangs::Polymake.Array{Polymake.Set{Polymake.Set{Polymake.to_cxx_type(Int)}}}) result = Vector{Vector{Int}}[] for triang in triangs push!(result, [Polymake.to_one_based_indexing(Vector{Int}(t)) for t in triang])