source: git/libpolys/polys/sparsmat.h @ 5d9aa6

spielwiese
Last change on this file since 5d9aa6 was 5d9aa6, checked in by Oleksandr Motsak <motsak@…>, 13 years ago
FIX: further fixes in matpol ADD: sparse matrices (sparsmat.*) - needed for matpol (Berreiss?)
  • Property mode set to 100644
File size: 936 bytes
Line 
1#ifndef SPARSEMAT_H
2#define SPARSEMAT_H
3/*******************************************************************
4 *  Computer Algebra System SINGULAR
5 *
6 *  sparsmat.h: operations with sparse matrices
7 *          (bareis, ...)
8 *
9 *******************************************************************/
10/* $Id$ */
11
12
13poly smMult(poly, poly);
14void smPolyDiv(poly, poly);
15poly smMultDiv(poly, poly, const poly);
16void smSpecialPolyDiv(poly, poly);
17/* ----------------- macros ------------------ */
18/* #define OLD_DIV 1 */
19
20#ifdef OLD_DIV
21#define SM_MULT(A,B,C) smMult(A,B)
22#define SM_DIV smPolyDiv
23#else
24#define SM_MULT smMultDiv
25#define SM_DIV smSpecialPolyDiv
26#endif
27
28poly smCallDet(ideal I);
29void smCallBareiss(ideal smat, int x, int y, ideal & M, intvec ** iv);
30ideal smCallSolv(ideal I);
31
32ring smRingChange(ring *, long);
33void smKillModifiedRing(ring r);
34long smExpBound(ideal, int, int, int);
35BOOLEAN smCheckDet(ideal, int, BOOLEAN);
36#endif
Note: See TracBrowser for help on using the repository browser.