spielwiese
Last change
on this file since ff7993 was
ff7993,
checked in by Oleksandr Motsak <motsak@…>, 11 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
|
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.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 | |
---|
22 | struct spolyrec; |
---|
23 | typedef struct spolyrec polyrec; |
---|
24 | typedef polyrec * poly; |
---|
25 | |
---|
26 | struct ip_sring; |
---|
27 | typedef struct ip_sring * ring; |
---|
28 | |
---|
29 | struct sip_sideal; |
---|
30 | typedef struct sip_sideal * ideal; |
---|
31 | |
---|
32 | |
---|
33 | BEGIN_NAMESPACE_SINGULARXX BEGIN_NAMESPACE(SYZEXTRA) |
---|
34 | |
---|
35 | |
---|
36 | |
---|
37 | |
---|
38 | END_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.