source: git/kernel/maps.h @ b07ba77

spielwiese
Last change on this file since b07ba77 was b07ba77, checked in by Hans Schönemann <hannes@…>, 14 years ago
clean up structs.h, part ... git-svn-id: file:///usr/local/Singular/svn/trunk@12437 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 1.0 KB
Line 
1#ifndef MAPS_H
2#define MAPS_H
3/****************************************
4*  Computer Algebra System SINGULAR     *
5****************************************/
6/* $Id$ */
7/*
8* ABSTRACT - the mapping of polynomials to other rings
9*/
10#include "structs.h"
11#include "ideals.h"
12
13poly maEval(map theMap, poly p, ring preimage_r, nMapFunc nMap,matrix s=NULL);
14map maCopy(map theMap);
15
16ideal maGetPreimage(ring theImageRing, map theMap,ideal id);
17
18poly maIMap(ring r, poly p);
19
20BOOLEAN maApplyFetch(int what,map theMap,leftv res, leftv w,
21                     ring preimage_r, int *perm,
22                     int *par_perm,int P, nMapFunc nMap);
23void maFindPerm(char **preim_names, int preim_n, char **preim_par, int preim_p,
24                char **names,       int n,       char **par,       int nop,
25                int * perm, int *par_perm, int ch);
26poly pSubstPoly(poly p, int var, poly image);
27ideal  idSubstPoly(ideal id, int n, poly e);
28
29poly pMinPolyNormalize(poly p);
30int maMaxDeg_P(poly p,ring preimage_r);
31int maMaxDeg_Ma(ideal a,ring preimage_r);
32#endif
Note: See TracBrowser for help on using the repository browser.