source: git/dyn_modules/syzextra/syzextra.cc @ ff7993

spielwiese
Last change on this file since ff7993 was ff7993, checked in by Oleksandr Motsak <motsak@…>, 12 years ago
introduced syzextra.{h,cc} files for cleaner separation of algorithms and interpreter wrappers
  • Property mode set to 100644
File size: 901 bytes
Line 
1// -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
2/*****************************************************************************\
3 * Computer Algebra System SINGULAR   
4\*****************************************************************************/
5/** @file syzextra.cc
6 *
7 * Here we implement the Computation of Syzygies
8 *
9 * ABSTRACT: Computation of Syzygies due to Schreyer
10 *
11 * @author Oleksandr Motsak
12 *
13 **/
14/*****************************************************************************/
15
16// include header file
17#include <kernel/mod2.h>
18
19#include "syzextra.h"
20
21#include <omalloc/omalloc.h>
22#include <polys/monomials/p_polys.h>
23
24#include <kernel/ideals.h>
25
26
27BEGIN_NAMESPACE_SINGULARXX     BEGIN_NAMESPACE(SYZEXTRA)
28
29
30
31
32
33
34
35
36
37END_NAMESPACE               END_NAMESPACE_SINGULARXX
38
39
40// Vi-modeline: vim: filetype=c:syntax:shiftwidth=2:tabstop=8:textwidth=0:expandtab
Note: See TracBrowser for help on using the repository browser.