Changeset 9102bb in git for factory/NTLconvert.cc


Ignore:
Timestamp:
Aug 6, 2019, 3:21:38 PM (5 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
695288e2d57e72ad6969a3bdcc02d8d019857a56
Parents:
48f20b0402356f0f7fa136772209441b8b6d869cf006a1a0d5b28b1d503bf27a7ce5902096a20eba
git-author:
Hans Schoenemann <hannes@mathematik.uni-kl.de>2019-08-06 15:21:38+02:00
git-committer:
GitHub <noreply@github.com>2019-08-06 15:21:38+02:00
Message:
Merge pull request #944 from kabouzeid/lp_syzygies

Lp syzygies (work in progress)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • factory/NTLconvert.cc

    rf006a1 r9102bb  
    3333#include "NTLconvert.h"
    3434
     35#ifdef HAVE_OMALLOC
     36#define Alloc(L) omAlloc(L)
     37#define Free(A,L) omFreeSize(A,L)
     38#else
    3539#define Alloc(L) malloc(L)
    3640#define Free(A,L) free(A)
     41#endif
    3742
    3843void out_cf(const char *s1,const CanonicalForm &f,const char *s2);
Note: See TracChangeset for help on using the changeset viewer.