Changeset 01776f in git


Ignore:
Timestamp:
Jul 10, 2018, 4:48:43 PM (6 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'fieker-DuVal', '117eb8c30fc9e991c4decca4832b1d19036c4c65')(u'spielwiese', 'b4f17ed1d25f93d46dbe29e4b499baecc2fd51bb')
Children:
d4e70ce7cd731c82065512005da56817c732bca7
Parents:
2443ced2cba9f5617e0ff42c31388959712c13d9
Message:
fix: dump for cring
Location:
Singular/links
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • Singular/links/asciiLink.cc

    r2443ced r01776f  
    301301    if (strcmp(IDID(h),"QQ")==0) return FALSE;
    302302    if (strcmp(IDID(h),"ZZ")==0) return FALSE;
     303    #ifdef SINGULAR_4_2
    303304    if (strcmp(IDID(h),"AE")==0) return FALSE;
    304305    if (strcmp(IDID(h),"QAE")==0) return FALSE;
    305     if (strcmp(IDID(h),"flint_poly_Q")==0) return FALSE;
     306    #endif
     307    if (strcmp(IDID(h),"flintQ")==0) return FALSE;
    306308  }
    307309
  • Singular/links/ssiLink.cc

    r2443ced r01776f  
    20292029    return FALSE;
    20302030
     2031  // do not dump default cring:
     2032  if (type_id == CRING_CMD)
     2033  {
     2034    if (strcmp(IDID(h),"ZZ")==0) return FALSE;
     2035    if (strcmp(IDID(h),"QQ")==0) return FALSE;
     2036    #ifdef SINGULAR_4_2
     2037    if (strcmp(IDID(h),"AE")==0) return FALSE;
     2038    if (strcmp(IDID(h),"QAE")==0) return FALSE;
     2039    #endif
     2040    if (strcmp(IDID(h),"flintQ")==0) return FALSE;
     2041  }
     2042
    20312043  command D=(command)omAlloc0(sizeof(*D));
    20322044  sleftv tmp;
Note: See TracChangeset for help on using the changeset viewer.