source: git/kernel/maps.h @ 3a67ea7

spielwiese
Last change on this file since 3a67ea7 was 508937, checked in by Hans Schönemann <hannes@…>, 17 years ago
*hannes: map conflict git-svn-id: file:///usr/local/Singular/svn/trunk@9823 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 1.1 KB
Line 
1#ifndef MAPS_H
2#define MAPS_H
3/****************************************
4*  Computer Algebra System SINGULAR     *
5****************************************/
6/* $Id: maps.h,v 1.2 2007-02-07 18:28:25 Singular Exp $ */
7/*
8* ABSTRACT - the mapping of polynomials to other rings
9*/
10#include "structs.h"
11typedef ip_smap *          map;
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.