source: git/kernel/maps.h @ 5a9e7b

spielwiese
Last change on this file since 5a9e7b was 35aab3, checked in by Hans Schönemann <hannes@…>, 21 years ago
This commit was generated by cvs2svn to compensate for changes in r6879, which included commits to RCS files with non-trunk default branches. git-svn-id: file:///usr/local/Singular/svn/trunk@6880 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.1.1.1 2003-10-06 12:15:57 Singular Exp $ */
7/*
8* ABSTRACT - the mapping of polynomials to other rings
9*/
10#include "structs.h"
11
12poly maEval(map theMap, poly p, ring preimage_r, nMapFunc nMap,matrix s=NULL);
13map maCopy(map theMap);
14
15ideal maGetPreimage(ring theImageRing, map theMap,ideal id);
16
17poly maIMap(ring r, poly p);
18
19BOOLEAN maApplyFetch(int what,map theMap,leftv res, leftv w,
20                     ring preimage_r, int *perm,
21                     int *par_perm,int P, nMapFunc nMap);
22void maFindPerm(char **preim_names, int preim_n, char **preim_par, int preim_p,
23                char **names,       int n,       char **par,       int nop,
24                int * perm, int *par_perm, int ch);
25poly pSubstPoly(poly p, int var, poly image);
26ideal  idSubstPoly(ideal id, int n, poly e);
27
28poly pMinPolyNormalize(poly p);
29int maMaxDeg_P(poly p,ring preimage_r);
30int maMaxDeg_Ma(ideal a,ring preimage_r);
31#endif
Note: See TracBrowser for help on using the repository browser.