source: git/kernel/GBEngine/f5c.cc @ e6cdad

spielwiese
Last change on this file since e6cdad was e6cdad, checked in by Hans Schoenemann <hannes@…>, 5 years ago
use xalloc if omalloc is disabled
  • Property mode set to 100644
File size: 851 bytes
Line 
1
2
3
4#include "kernel/mod2.h"
5#ifdef HAVE_F5
6#include <unistd.h>
7#include "kernel/structs.h"
8#include "kernel/GBEngine/kutil.h"
9#ifdef HAVE_OMALLOC
10#include "omalloc/omalloc.h"
11#else
12#include "xalloc/omalloc.h"
13#endif
14#include "kernel/polys.h"
15#include "polys/monomials/p_polys.h"
16#include "polys/templates/p_Procs.h"
17#include "kernel/ideals.h"
18#include "kernel/GBEngine/kstd1.h"
19#include "kernel/GBEngine/khstd.h"
20#include "polys/kbuckets.h"
21#include "polys/weight.h"
22#include "misc/intvec.h"
23#include "kernel/polys.h"
24#include "kernel/GBEngine/f5c.h"
25/*
26==========================================================================
27MAIN:computes a gb of the ideal i in the ring r with our F5 implementation
28==========================================================================
29*/
30ideal f5cMain(ideal id, ring r) {
31
32  return id;
33}
34
35#endif
36// HAVE_F5
Note: See TracBrowser for help on using the repository browser.