Changeset 7e644c in git


Ignore:
Timestamp:
Jun 22, 2022, 12:37:09 PM (22 months ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
5f62529a0524e7312ffb6cce8cbca0e26c513a56
Parents:
55c1892efcaf858e208a593ddeea7733548d087b
Message:
fix: build without flint
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/iparith.cc

    r55c189 r7e644c  
    44674467static BOOLEAN jjKERNEL_M(leftv res, leftv v)
    44684468{
     4469#ifdef HAVE_FLINT
    44694470  res->data = (char *)singflint_kernel((matrix)(v->Data()),currRing);
    44704471  return res->data==NULL;
     4472#else
     4473  return TRUE;
     4474#endif
    44714475}
    44724476static BOOLEAN jjKERNEL_SM(leftv res, leftv v)
    44734477{
     4478#ifdef HAVE_FLINT
    44744479  res->data = (char *)singflint_kernel((ideal)(v->Data()),currRing);
    44754480  return res->data==NULL;
     4481#else
     4482  return TRUE;
     4483#endif
    44764484}
    44774485static BOOLEAN jjKBASE(leftv res, leftv v)
Note: See TracChangeset for help on using the changeset viewer.