@@ -265,14 +265,14 @@ function PolyhedralFan{T}(Rays::AbstractCollection[RayVector],
265
265
Incidence:: IncidenceMatrix ;
266
266
non_redundant:: Bool = false ) where T<: scalar_types
267
267
Base. depwarn (" 'PolyhedralFan{$T }(x...)' is deprecated, use 'polyhedral_fan($T , x...)' instead." , :PolyhedralFan )
268
- return polyhedral_fan (T, Rays, LS, Incidence ; non_redundant= non_redundant)
268
+ return polyhedral_fan (T, Incidence, Rays, LS ; non_redundant= non_redundant)
269
269
end
270
270
function PolyhedralFan {T} (Rays:: AbstractCollection [RayVector], Incidence:: IncidenceMatrix ; non_redundant:: Bool = false ) where T<: scalar_types
271
271
Base. depwarn (" 'PolyhedralFan{$T }(x...)' is deprecated, use 'polyhedral_fan($T , x...)' instead." , :PolyhedralFan )
272
- return polyhedral_fan (T, Rays, Incidence ; non_redundant= non_redundant)
272
+ return polyhedral_fan (T, Incidence, Rays ; non_redundant= non_redundant)
273
273
end
274
- @deprecate PolyhedralFan (Rays:: AbstractCollection [RayVector], LS:: Union{AbstractCollection[RayVector], Nothing} , Incidence:: IncidenceMatrix ; non_redundant:: Bool = false ) polyhedral_fan (QQFieldElem, Rays, LS, Incidence ; non_redundant = non_redundant)
275
- @deprecate PolyhedralFan (Rays:: AbstractCollection [RayVector], Incidence:: IncidenceMatrix ; non_redundant:: Bool = false ) polyhedral_fan (QQFieldElem, Rays, Incidence ; non_redundant = non_redundant)
274
+ @deprecate PolyhedralFan (Rays:: AbstractCollection [RayVector], LS:: Union{AbstractCollection[RayVector], Nothing} , Incidence:: IncidenceMatrix ; non_redundant:: Bool = false ) polyhedral_fan (QQFieldElem, Incidence, Rays, LS ; non_redundant = non_redundant)
275
+ @deprecate PolyhedralFan (Rays:: AbstractCollection [RayVector], Incidence:: IncidenceMatrix ; non_redundant:: Bool = false ) polyhedral_fan (QQFieldElem, Incidence, Rays ; non_redundant = non_redundant)
276
276
function PolyhedralFan (itr:: AbstractVector{Cone{T}} ) where T<: scalar_types
277
277
Base. depwarn (" 'PolyhedralFan' is deprecated, use 'polyhedral_fan' instead." , :PolyhedralFan )
278
278
return polyhedral_fan (itr)
@@ -283,11 +283,11 @@ function PolyhedralFan(C::Cone{T}) where T<:scalar_types
283
283
end
284
284
function PolyhedralFan {T} (Rays:: AbstractCollection [RayVector], LS:: AbstractCollection [RayVector], Incidence:: Matrix{Bool} ) where T<: scalar_types
285
285
Base. depwarn (" 'PolyhedralFan{$T }(x...)' is deprecated, use 'polyhedral_fan($T , x...)' instead." , :PolyhedralFan )
286
- return polyhedral_fan (T, Rays, LS, Incidence )
286
+ return polyhedral_fan (T, Incidence, Rays, LS )
287
287
end
288
288
function PolyhedralFan {T} (Rays:: AbstractCollection [RayVector], Incidence:: Matrix{Bool} ) where T<: scalar_types
289
289
Base. depwarn (" 'PolyhedralFan{$T }(x...)' is deprecated, use 'polyhedral_fan($T , x...)' instead." , :PolyhedralFan )
290
- return polyhedral_fan (T, Rays, Incidence )
290
+ return polyhedral_fan (T, Incidence, Rays )
291
291
end
292
292
293
293
# SubdivisionOfPoints -> subdivision_of_points
494
494
@deprecate revlex (v:: AbstractVector{<:MPolyRingElem} ) invlex (v:: AbstractVector{<:MPolyRingElem} )
495
495
@deprecate negrevlex (R:: MPolyRing ) ngeinvlex (R:: MPolyRing )
496
496
@deprecate negrevlex (v:: AbstractVector{<:MPolyRingElem} ) neginvlex (v:: AbstractVector{<:MPolyRingElem} )
497
+ @deprecate polyhedral_fan (f:: scalar_type_or_field , Rays:: AbstractCollection [RayVector], Incidence:: IncidenceMatrix ; non_redundant:: Bool = false ) polyhedral_fan (f, Incidence, Rays, nothing ; non_redundant)
498
+ @deprecate polyhedral_fan (Rays:: AbstractCollection [RayVector], LS:: Union{AbstractCollection[RayVector], Nothing} , Incidence:: IncidenceMatrix ; non_redundant:: Bool = false ) polyhedral_fan (QQFieldElem, Incidence, Rays, LS; non_redundant)
499
+ @deprecate polyhedral_fan (Rays:: AbstractCollection [RayVector], Incidence:: IncidenceMatrix ; non_redundant:: Bool = false ) polyhedral_fan (QQFieldElem, Incidence, Rays; non_redundant)
500
+ @deprecate polyhedral_fan (f:: scalar_type_or_field ,
501
+ Rays:: AbstractCollection [RayVector],
502
+ LS:: Union{AbstractCollection[RayVector], Nothing} ,
503
+ Incidence:: IncidenceMatrix ;
504
+ non_redundant:: Bool = false ) polyhedral_fan (f, Incidence, Rays, LS; non_redundant)
505
+ @deprecate polyhedral_fan (f:: scalar_type_or_field , Rays:: AbstractCollection [RayVector], LS:: AbstractCollection [RayVector], Incidence:: Matrix{Bool} ) polyhedral_fan (f, Rays, LS, IncidenceMatrix (Polymake. IncidenceMatrix (Incidence)))
506
+ @deprecate polyhedral_fan (f:: scalar_type_or_field , Rays:: AbstractCollection [RayVector], Incidence:: Matrix{Bool} ) polyhedral_fan (f, Rays, IncidenceMatrix (Polymake. IncidenceMatrix (Incidence)))
507
+ @deprecate normal_toric_variety (rays:: AbstractCollection [RayVector], max_cones:: IncidenceMatrix ; non_redundant:: Bool = false ) normal_toric_variety (max_cones, rays; non_redundant)
0 commit comments