My Project
Toggle main menu visibility
Loading...
Searching...
No Matches
kernel
maps
gen_maps.h
Go to the documentation of this file.
1
#ifndef GEN_MAPS_H
2
#define GEN_MAPS_H
3
/****************************************
4
* Computer Algebra System SINGULAR *
5
****************************************/
6
/// polynomial map for ideals/module/matrix
7
/// map_id: the ideal to map
8
/// map_r: the base ring for map_id
9
/// image_id: the image of the variables
10
/// image_r: the base ring for image_id
11
/// nMap: map for coefficients
12
ideal
maMapIdeal
(
const
ideal map_id,
const
ring map_r,
const
ideal image_id,
const
ring image_r,
const
nMapFunc
nMap);
13
14
/// polynomial map for poly (vector)
15
/// map_p: the poly (vector) to map
16
/// map_r: the base ring for map_p
17
/// image_id: the image of the variables
18
/// image_r: the base ring for image_id
19
/// nMap: map for coefficients
20
poly
maMapPoly
(
const
poly map_p,
const
ring map_r,
const
ideal image_id,
const
ring image_r,
const
nMapFunc
nMap);
21
22
poly
p_SubstPoly
(poly
p
,
int
var, poly image,
const
ring preimage_r,
const
ring image_r,
const
nMapFunc
nMap,
matrix
cache=
NULL
);
23
ideal
id_SubstPoly
(ideal
id
,
int
var, poly image,
const
ring preimage_r,
const
ring image_r,
const
nMapFunc
nMap);
24
25
/// evaluate the polynomial p at the pt given by the array pt
26
number
maEvalAt
(
const
poly
p
,
const
number* pt,
const
ring r);
27
#endif
28
p
int p
Definition
cfModGcd.cc:4086
nMapFunc
number(* nMapFunc)(number a, const coeffs src, const coeffs dst)
maps "a", which lives in src, into dst
Definition
coeffs.h:80
id_SubstPoly
ideal id_SubstPoly(ideal id, int var, poly image, const ring preimage_r, const ring image_r, const nMapFunc nMap)
Definition
subst_maps.cc:78
maMapPoly
poly maMapPoly(const poly map_p, const ring map_r, const ideal image_id, const ring image_r, const nMapFunc nMap)
polynomial map for poly (vector) map_p: the poly (vector) to map map_r: the base ring for map_p image...
Definition
gen_maps.cc:166
p_SubstPoly
poly p_SubstPoly(poly p, int var, poly image, const ring preimage_r, const ring image_r, const nMapFunc nMap, matrix cache=NULL)
Definition
subst_maps.cc:46
maMapIdeal
ideal maMapIdeal(const ideal map_id, const ring map_r, const ideal image_id, const ring image_r, const nMapFunc nMap)
polynomial map for ideals/module/matrix map_id: the ideal to map map_r: the base ring for map_id imag...
Definition
gen_maps.cc:88
maEvalAt
number maEvalAt(const poly p, const number *pt, const ring r)
evaluate the polynomial p at the pt given by the array pt
Definition
gen_maps.cc:174
matrix
ip_smatrix * matrix
Definition
matpol.h:43
NULL
#define NULL
Definition
omList.c:12
Generated on
for My Project by
doxygen 1.17.0
for
Singular