source: git/kernel/f5c.cc @ 6ce030f

spielwiese
Last change on this file since 6ce030f was 762407, checked in by Oleksandr Motsak <motsak@…>, 12 years ago
config.h is for sources files only FIX: config.h should only be used by source (not from inside kernel/mod2.h!) NOTE: each source file should better include mod2.h right after config.h, while headers should better not include mod2.h.
  • Property mode set to 100644
File size: 824 bytes
Line 
1#include "config.h"
2#include <kernel/mod2.h>
3#ifdef HAVE_F5
4#include <unistd.h>
5#include <kernel/structs.h>
6#include <kernel/kutil.h>
7#include <omalloc/omalloc.h>
8#include <kernel/polys.h>
9#include <polys/monomials/p_polys.h>
10#include <polys/templates/p_Procs.h>
11#include <kernel/ideals.h>
12#include <kernel/febase.h>
13#include <kernel/kstd1.h>
14#include <kernel/khstd.h>
15#include <polys/kbuckets.h>
16#include <polys/weight.h>
17#include <misc/intvec.h>
18#include <kernel/polys.h>
19#include <kernel/f5c.h>
20#include <kernel/timer.h>
21/*
22==========================================================================
23MAIN:computes a gb of the ideal i in the ring r with our F5 implementation
24==========================================================================
25*/
26ideal f5cMain(ideal id, ring r) {
27
28  return id;
29}
30
31#endif
32// HAVE_F5
Note: See TracBrowser for help on using the repository browser.