You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
function getFaces(A,b,p,FD)
NF = normal_fan(Oscar.Polyhedron(A,b))
faces= []
for d in 1:Oscar.dim(NF)
for cone in Oscar.cones(NF,d)
face = []
for ray in Oscar.rays(cone)
rayy = [-r.num for r in ray]
push!(face,FD[rayy])
end
push!(faces,face)
end
end
return faces
end
I can find the faces... But there is no function in Polyhedra.jl like normal_fan()
is threre any function to find faces?
The text was updated successfully, but these errors were encountered:
In Oscar.jl with
I can find the faces... But there is no function in Polyhedra.jl like normal_fan()
is threre any function to find faces?
The text was updated successfully, but these errors were encountered: