Changeset c870e35 in git


Ignore:
Timestamp:
Aug 4, 2023, 11:02:34 AM (9 months ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'fieker-DuVal', '117eb8c30fc9e991c4decca4832b1d19036c4c65')(u'spielwiese', '38dfc5131670d387a89455159ed1e071997eec94')
Children:
78b71bbc7f2a2dc52bba04e9b9c402f1521928e3
Parents:
819586e98d6b4c01490d1d0c08a4aed0a6409b05
git-author:
Hans Schoenemann <hannes@mathematik.uni-kl.de>2023-08-04 11:02:34+02:00
git-committer:
Hans Schoenemann <hannes@mathematik.uni-kl.de>2023-08-04 11:04:48+02:00
Message:
add rOrd_is_dp
Location:
libpolys/polys/monomials
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • libpolys/polys/monomials/ring.cc

    r819586 rc870e35  
    20222022            ((r->order[1]!=0) &&
    20232023             rOrder_is_DegOrdering((rRingOrder_t)r->order[2]))))));
     2024}
     2025
     2026BOOLEAN rOrd_is_dp(const ring r)
     2027{
     2028  // Hmm.... what about Syz orderings?
     2029  return (rVar(r) > 1 &&
     2030         (rHasSimpleOrder(r) &&
     2031           (r->order[0]==ringorder_dp) ||
     2032            (r->order[1]==ringorder_dp)));
    20242033}
    20252034
  • libpolys/polys/monomials/ring.h

    r819586 rc870e35  
    767767
    768768BOOLEAN rOrd_is_Totaldegree_Ordering(const ring r);
     769BOOLEAN rOrd_is_dp(const ring r);
    769770
    770771/// return TRUE if p_SetComp requires p_Setm
Note: See TracChangeset for help on using the changeset viewer.