source: git/dyn_modules/syzextra/syzextra.h @ 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: 1.0 KB
RevLine 
[ff7993]1// -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
2/*****************************************************************************\
3 * Computer Algebra System SINGULAR   
4\*****************************************************************************/
5/** @file syzextra.h
6 *
7 * Computation of Syzygies
8 *
9 * ABSTRACT: Computation of Syzygies due to Schreyer
10 *
11 * @author Oleksandr Motsak
12 *
13 **/
14/*****************************************************************************/
15
16#ifndef SYZEXTRA_H
17#define SYZEXTRA_H
18
19// include basic definitions
20#include "singularxx_defs.h"
21
22struct  spolyrec;
23typedef struct spolyrec    polyrec;
24typedef polyrec *          poly;
25
26struct ip_sring;
27typedef struct ip_sring *         ring;
28
29struct sip_sideal;
30typedef struct sip_sideal *       ideal;
31
32
33BEGIN_NAMESPACE_SINGULARXX    BEGIN_NAMESPACE(SYZEXTRA)
34
35
36
37
38END_NAMESPACE               END_NAMESPACE_SINGULARXX
39
40#endif
41/* #ifndef SYZEXTRA_H */
42
43// Vi-modeline: vim: filetype=c:syntax:shiftwidth=2:tabstop=8:textwidth=0:expandtab
44
Note: See TracBrowser for help on using the repository browser.