1 | // $Id: deform.lib,v 1.4 1998-01-23 15:44:59 Singular Exp $ |
---|
2 | //(bm, last modified 12/97) |
---|
3 | /////////////////////////////////////////////////////////////////////////////// |
---|
4 | LIBRARY: deform.lib PROCEDURES FOR COMPUTING MINIVERSAL DEFORMATION |
---|
5 | (new version) |
---|
6 | versal(Fo[,d,any]) miniversal deformation of isolated singularity Fo |
---|
7 | mod_versal(Mo,I,[,d,any]) |
---|
8 | miniversal deformation of module Mo modulo ideal I |
---|
9 | lift_rel_kb(N,M[,kbM,p]) lifting N into a kbase of M |
---|
10 | kill_rings(["prefix"]) kills the exported rings from above |
---|
11 | |
---|
12 | SUB-PROCEDURES used by main procedure: |
---|
13 | get_rings,compute_ext,get_inf_def,interact1, |
---|
14 | interact2,negative_part,homog_test |
---|
15 | LIB "inout.lib"; |
---|
16 | LIB "general.lib"; |
---|
17 | LIB "matrix.lib"; |
---|
18 | LIB "homolog.lib"; |
---|
19 | LIB "inout.lib"; |
---|
20 | LIB "general.lib"; |
---|
21 | LIB "sing.lib"; |
---|
22 | LIB "matrix.lib"; |
---|
23 | LIB "homolog.lib"; |
---|
24 | /////////////////////////////////////////////////////////////////////////////// |
---|
25 | proc versal (ideal Fo,list #) |
---|
26 | USAGE: versal(Fo[,d,any]); Fo=ideal, d=int, any=list |
---|
27 | COMUPTE: miniversal deformation of Fo up to degree d (default d=100), |
---|
28 | CREATE: Rings (exported): |
---|
29 | 'my'Px = extending the basering Po by new variables given by "A,B,.." |
---|
30 | (deformation parameters), returns as basering, |
---|
31 | the new variables come before the old ones, |
---|
32 | the ordering is the product between "ls" and "ord(Po)", |
---|
33 | 'my'Qx = Px/Fo extending Qo=Po/Fo, |
---|
34 | 'my'So = being the embedding-ring of the versal base space, |
---|
35 | 'my'Ox = Px/Js extending So/Js. (default my="") |
---|
36 | Matrices (in Px, exported): |
---|
37 | Js = giving the versal base space (obstructions), |
---|
38 | Fs = giving the versal family of Fo, |
---|
39 | Rs = giving the lifting of Ro=syz(Fo). |
---|
40 | If d is defined (!=0), it computes up to degree d. |
---|
41 | If 'any' is defined and any[1] is no string, interactive version. |
---|
42 | Otherwise 'any' gives predefined strings: "my","param","order","out" |
---|
43 | ("my" prefix-string, "param" is a letter (e.g. "A") for the name of |
---|
44 | first parameter or (e.g. "A(") for index parameter variables, "order" |
---|
45 | ordering string for ring extension), "out" name of output-file). |
---|
46 | NOTE: printlevel < 0 no output at all, |
---|
47 | printlevel >=0,1,2,.. informs you, what is going on; |
---|
48 | this proc uses 'execute'. |
---|
49 | EXAMPLE:example versal; shows an example |
---|
50 | { |
---|
51 | //------- prepare ------------------------------------------------------------- |
---|
52 | string str,@param,@order,@my,@out,@degrees; |
---|
53 | int @d,d_max,@t1,t1',@t2,@colR,ok_ann,@smooth,@noObstr,@size,@j; |
---|
54 | int p = printlevel-voice+3; |
---|
55 | int time = timer; |
---|
56 | intvec @iv,@jv,@is_qh,@degr; |
---|
57 | d_max = 100; |
---|
58 | @my = ""; @param="A"; @order="ds"; @out="no"; |
---|
59 | @size = size(#); |
---|
60 | if( @size>0 ) { d_max = #[1]; } |
---|
61 | if( @size>1 ) |
---|
62 | { if(typeof(#[2])!="string") |
---|
63 | { string @active; |
---|
64 | @my,@param,@order,@out = interact1(); |
---|
65 | } |
---|
66 | else |
---|
67 | { @my = #[2]; |
---|
68 | if (@size>2) {@param = #[3];} |
---|
69 | if (@size>3) {@order = #[4];} |
---|
70 | if (@size>4) {@out = #[5];} |
---|
71 | } |
---|
72 | } |
---|
73 | string myPx = @my+"Px"; |
---|
74 | string myQx = @my+"Qx"; |
---|
75 | string myOx = @my+"Ox"; |
---|
76 | string mySo = @my+"So"; |
---|
77 | Fo = simplify(Fo,10); |
---|
78 | @is_qh = qhweight(Fo); |
---|
79 | int @rowR= size(Fo); |
---|
80 | def Po = basering; |
---|
81 | setring Po; |
---|
82 | poly X_s = product(maxideal(1)); |
---|
83 | //------- reproduce T12 ------------------------------------------------------ |
---|
84 | list Ls = T12(Fo,1); |
---|
85 | matrix Ro = Ls[6]; // syz(i) |
---|
86 | matrix InfD = Ls[5]; // matrix of inf. deformations |
---|
87 | matrix PreO = Ls[7]; // representation of (Syz/Kos)* |
---|
88 | module PreO'= std(PreO); |
---|
89 | module PreT = Ls[2]; // representation of modT2 (sb) |
---|
90 | if(dim(PreT)==0) |
---|
91 | { |
---|
92 | matrix kbT2 = kbase(PreT); // kbase of T2 |
---|
93 | } |
---|
94 | else |
---|
95 | { |
---|
96 | matrix kbT2 ; // kbase of T2 : empty |
---|
97 | } |
---|
98 | @t1 = Ls[3]; // vdim of T1 |
---|
99 | @t2 = Ls[4]; // vdim of T2 |
---|
100 | kill Ls; |
---|
101 | t1' = @t1; |
---|
102 | if( @t1==0) { dbprint(p,"// rigit!"); return();} |
---|
103 | if( @t2==0) { @smooth=1; dbprint(p,"// smooth base space");} |
---|
104 | dbprint(p,"// ready: T1 and T2"); |
---|
105 | @colR = ncols(Ro); |
---|
106 | //----- test: quasi-homogeneous, choice of inf. def.-------------------------- |
---|
107 | @degrees = homog_test(@is_qh,matrix(Fo),InfD); |
---|
108 | @jv = 1..@t1; |
---|
109 | if (@degrees!="") |
---|
110 | { dbprint(p-1,"// T1 is quasi-homogeneous represented with weight-vector", |
---|
111 | @degrees); |
---|
112 | } |
---|
113 | if (defined(@active)) |
---|
114 | { "// matrix of infinitesimal deformations:";print(InfD); |
---|
115 | "// weights of infinitesimal deformations ( emty ='not qhomog'):"; |
---|
116 | @degrees; |
---|
117 | matrix dummy; |
---|
118 | InfD,dummy,t1' = interact2(InfD,@jv);kill dummy; |
---|
119 | } |
---|
120 | //---- create new rings and objects ------------------------------------------ |
---|
121 | get_rings(Fo,t1',1,@my,@order,@param); |
---|
122 | setring `myPx`; |
---|
123 | @jv=0; @jv[t1']=0; @jv=@jv+1; @jv[nvars(basering)]=0; |
---|
124 | //weight-vector for calculating |
---|
125 | //rel-jet with resp to def-para |
---|
126 | ideal Io = imap(Po,Fo); |
---|
127 | ideal J,m_J,tid; attrib(J,"isSB",1); |
---|
128 | matrix Fo = matrix(Io); //initial equations |
---|
129 | matrix homF = kohom(Fo,@colR); |
---|
130 | matrix Ro = imap(Po,Ro); |
---|
131 | matrix homR = transpose(Ro); |
---|
132 | matrix homFR= concat(homR,homF); |
---|
133 | print(homFR); |
---|
134 | test(6); |
---|
135 | module hom' = std(homFR); |
---|
136 | matrix Js[1][@t2]; |
---|
137 | matrix F_R,Fs,Rs,Fn,Rn; |
---|
138 | export Js,Fs,Rs; |
---|
139 | matrix Mon[t1'][1]=maxideal(1); |
---|
140 | Fn = transpose(imap(Po,InfD)*Mon); //infinitesimal deformations |
---|
141 | Fs = Fo + Fn; |
---|
142 | dbprint(p-1,"// infinitesimal deformation: Fs: ",Fs); |
---|
143 | Rn = (-1)*lift(Fo,Fs*Ro); //infinit. relations |
---|
144 | Rs = Ro + Rn; |
---|
145 | F_R = Fs*Rs; |
---|
146 | tid = 0 + ideal(F_R); |
---|
147 | if (tid[1]==0) {d_max=1;} //finished ? |
---|
148 | setring `myOx`; |
---|
149 | matrix Fs,Rs,Cup,Cup',F_R,homFR,New,Rn,Fn; |
---|
150 | module hom'; |
---|
151 | ideal null,tid; attrib(null,"isSB",1); |
---|
152 | setring `myQx`; |
---|
153 | poly X_s = imap(Po,X_s); |
---|
154 | matrix Cup,Cup',MASS; |
---|
155 | ideal tid,null; attrib(null,"isSB",1); |
---|
156 | ideal J,m_J; attrib(J,"isSB",1); |
---|
157 | attrib(m_J,"isSB",1); |
---|
158 | matrix PreO = imap(Po,PreO); |
---|
159 | module PreO'= imap(Po,PreO'); attrib(PreO',"isSB",1); |
---|
160 | module PreT = imap(Po,PreT); attrib(PreT,"isSB",1); |
---|
161 | matrix kbT2 = imap(Po,kbT2); |
---|
162 | matrix Mon = fetch(`myPx`,Mon); |
---|
163 | matrix F_R = fetch(`myPx`,F_R); |
---|
164 | matrix Js[1][@t2]; |
---|
165 | //------- start the loop ------------------------------------------------------ |
---|
166 | for (@d=2;@d<=d_max;@d=@d+1) |
---|
167 | { |
---|
168 | if( @t1==0) {break}; |
---|
169 | dbprint(p,"// start computation in degree "+string(@d)+"."); |
---|
170 | dbprint(p-1,">>> TIME = "+string(timer-time)); |
---|
171 | dbprint(p-1,"==> memory = "+string(kmemory())+"k"); |
---|
172 | //------- compute obstruction-vector ----------------------------------------- |
---|
173 | if (@smooth) { @noObstr=1;} |
---|
174 | else |
---|
175 | { Cup = jet(F_R,@d,@jv); |
---|
176 | Cup = matrix(reduce(ideal(Cup),m_J),@colR,1); |
---|
177 | Cup = jet(Cup,@d,@jv); |
---|
178 | } |
---|
179 | //------- express obstructions in kbase of T2 -------------------------------- |
---|
180 | if ( @noObstr==0 ) |
---|
181 | { Cup' = reduce(Cup,PreO'); |
---|
182 | tid = simplify(ideal(Cup'),10); |
---|
183 | if(tid[1]!=0) |
---|
184 | { dbprint(p-4,"// *"); |
---|
185 | Cup=Cup-Cup'; |
---|
186 | } |
---|
187 | Cup = lift(PreO,Cup); |
---|
188 | MASS = lift_rel_kb(Cup,PreT,kbT2,X_s); |
---|
189 | dbprint(p-3,"// next MASSEY-products:",MASS-jet(MASS,@d-1,@jv)); |
---|
190 | if (MASS==transpose(Js)) |
---|
191 | { @noObstr=1;dbprint(p-1,"// no obstruction"); } |
---|
192 | else { @noObstr=0; } |
---|
193 | } |
---|
194 | //------- obtain equations of base space -------------------------------------- |
---|
195 | if ( @noObstr==0 ) |
---|
196 | { Js = transpose(MASS); |
---|
197 | dbprint(p-2,"// next equation of base space:", |
---|
198 | simplify(ideal(Js),10)); |
---|
199 | setring `myPx`; |
---|
200 | Js = imap(`myQx`,Js); |
---|
201 | degBound = @d+1; |
---|
202 | J = std(ideal(Js)); |
---|
203 | m_J = std(J*ideal(Mon)); |
---|
204 | degBound = 0; |
---|
205 | //--------------- obtain new base-ring ---------------------------------------- |
---|
206 | kill `myOx`; |
---|
207 | qring `myOx` = J; |
---|
208 | matrix Fs,Rs,F_R,Cup,Cup',homFR,New,Rn,Fn; |
---|
209 | module hom'; |
---|
210 | ideal null,tid; attrib(null,"isSB",1); |
---|
211 | } |
---|
212 | //---------------- lift equations F and relations R --------------------------- |
---|
213 | setring `myOx`; |
---|
214 | Fs = fetch(`myPx`,Fs); |
---|
215 | Rs = fetch(`myPx`,Rs); |
---|
216 | F_R = Fs*Rs; |
---|
217 | F_R = matrix(reduce(ideal(F_R),null)); |
---|
218 | tid = 0 + ideal(F_R); |
---|
219 | if (tid[1]==0) { dbprint(p-1,"// finished"); break;} |
---|
220 | Cup = (-1)*transpose(jet(F_R,@d,@jv)); |
---|
221 | homFR = fetch(`myPx`,homFR); |
---|
222 | hom' = fetch(`myPx`,hom'); attrib(hom',"isSB",1); |
---|
223 | Cup' = simplify(reduce(Cup,hom'),10); |
---|
224 | tid = simplify(ideal(Cup'),10); |
---|
225 | if (tid[1]!=0) |
---|
226 | { dbprint(p-4,"// #"); |
---|
227 | Cup=Cup-Cup'; |
---|
228 | } |
---|
229 | New = lift(homFR,Cup); |
---|
230 | Rn = matrix(ideal(New[1+@rowR..nrows(New),1]),@rowR,@colR); |
---|
231 | Fn = matrix(ideal(New[1..@rowR,1]),1,@rowR); |
---|
232 | Fs = Fs+Fn; |
---|
233 | Rs = Rs+Rn; |
---|
234 | F_R = Fs*Rs; |
---|
235 | tid = 0+reduce(ideal(F_R),null); |
---|
236 | //---------------- fetch results into other rings ----------------------------- |
---|
237 | setring `myPx`; |
---|
238 | Fs = fetch(`myOx`,Fs); |
---|
239 | Rs = fetch(`myOx`,Rs); |
---|
240 | F_R = Fs*Rs; |
---|
241 | setring `myQx`; |
---|
242 | F_R = fetch(`myPx`,F_R); |
---|
243 | m_J = fetch(`myPx`,m_J); attrib(m_J,"isSB",1); |
---|
244 | J = fetch(`myPx`,J); attrib(J,"isSB",1); |
---|
245 | Js = fetch(`myPx`,Js); |
---|
246 | tid = fetch(`myOx`,tid); |
---|
247 | if (tid[1]==0) { dbprint(p-1,"// finished");break;} |
---|
248 | } |
---|
249 | //--------- end loop and final output ---------------------------------------- |
---|
250 | setring `myPx`; |
---|
251 | if (@out!="no") |
---|
252 | { string out = @out+"_"+string(@d); |
---|
253 | "// writing file "+out+" with matrix Js, matrix Fs, matrix Rs ready |
---|
254 | for reading in rings "+myPx+" or "+myQx; |
---|
255 | write(out,"matrix Js[1][",@t2,"]=",Js,";matrix Fs[1][",@rowR,"]=",Fs, |
---|
256 | ";matrix Rs[",@rowR,"][",@colR,"]=",Rs,";"); |
---|
257 | } |
---|
258 | dbprint(p,">>> TIME = "+string(timer-time)); |
---|
259 | if (@is_qh != 0) |
---|
260 | { @degr = qhweight(ideal(Js)); |
---|
261 | @degr = @degr[1..t1']; |
---|
262 | dbprint(p-1,"// quasi-homogeneous weights of miniversal base",@degr); |
---|
263 | } |
---|
264 | dbprint(p-1, |
---|
265 | "// ___ Equations of miniversal base space ___",Js, |
---|
266 | "// ___ Equations of miniversal total space ___",Fs); |
---|
267 | dbprint(p,"","// Result belongs to ring "+myPx+".", |
---|
268 | "// Equations of total space of miniversal deformation are ", |
---|
269 | "// given by Fs, equations of miniversal base space by Js.", |
---|
270 | "// Make "+myPx+" the basering and list objects defined in " |
---|
271 | +myPx+" by typing:", |
---|
272 | " setring "+myPx+"; show("+myPx+");"," listvar(matrix);", |
---|
273 | "// NOTE: rings "+myQx+", "+myPx+", "+mySo+" are alive!", |
---|
274 | "// (use 'kill_rings(\""+@my+"\");' to remove)"); |
---|
275 | return(); |
---|
276 | } |
---|
277 | example |
---|
278 | { "EXAMPLE:"; echo = 2; |
---|
279 | int p = printlevel; |
---|
280 | printlevel = 0; |
---|
281 | ring r1 = 0,(x,y,z,u,v),ds; |
---|
282 | matrix m[2][4] = x,y,z,u,y,z,u,v; |
---|
283 | ideal Fo = minor(m,2); |
---|
284 | // cone over rational normal curve of degree 4 |
---|
285 | versal(Fo); |
---|
286 | setring Px; |
---|
287 | // ___ Equations of miniversal base space ___: |
---|
288 | Js;""; |
---|
289 | // ___ Equations of miniversal total space ___: |
---|
290 | Fs;""; |
---|
291 | kill Px,Qx,So; |
---|
292 | ring r2 = 0,(x,y,z),ds; |
---|
293 | ideal Fo = x2,xy,yz,zx; |
---|
294 | printlevel = 3; |
---|
295 | versal(Fo); |
---|
296 | printlevel = p; |
---|
297 | kill Px,Qx,So; |
---|
298 | } |
---|
299 | /////////////////////////////////////////////////////////////////////////////// |
---|
300 | proc mod_versal(matrix Mo, ideal I, list #) |
---|
301 | |
---|
302 | USAGE: mod_versal(Mo,I[,d,any]); I=ideal, M=module, d=int, any =list |
---|
303 | COMUPTE: miniversal deformation of coker(Mo) over Qo=Po/Io, Po=basering; |
---|
304 | CREATE: Ringsr (exported): |
---|
305 | 'my'Px = extending the basering by new variables |
---|
306 | (deformation parameters), |
---|
307 | the new variables come before the old ones, |
---|
308 | the ordering is the product between "my_ord" and "ord(Po)", |
---|
309 | 'my'Qx = Px/Io extending Qo (returns as basering), |
---|
310 | 'my'Ox = Px/(Io+Js) ring of the versal deformation of coker(Ms), |
---|
311 | 'my'So = embedding-ring of the versal base space. (default 'my'="") |
---|
312 | Matrices (in Qx, exported): |
---|
313 | Js = giving the versal base space (obstructions), |
---|
314 | Ms = giving the versal family of Mo, |
---|
315 | Ls = giving the lifting of syzygies Lo=syz(Mo), |
---|
316 | If d is defined (!=0), it computes up to degree d. |
---|
317 | If 'any' is defined and any[1] is no string, interactive version. |
---|
318 | Otherwise 'any' gives predefined strings:"my","param","order","out" |
---|
319 | ("my" prefix-string, "param" is a letter (e.g. "A") for the name of |
---|
320 | first parameter or (e.g. "A(") for index parameter variables, "ord" |
---|
321 | ordering string for ringextension), "out" name of output-file). |
---|
322 | NOTE: printlevel < 0 no output at all, |
---|
323 | printlevel >=0,1,2,.. informs you, what is going on, |
---|
324 | this proc uses 'execute'. |
---|
325 | EXAMPLE:example mod_versal; shows an example |
---|
326 | { |
---|
327 | //------- prepare ------------------------------------------------------------- |
---|
328 | string str,@param,@order,@my,@out,@degrees; |
---|
329 | int @d,d_max,f0,f1,f2,e1,e1',e2,ok_ann,@smooth,@noObstr,@size,@j; |
---|
330 | int p = printlevel-voice+3; |
---|
331 | int time = timer; |
---|
332 | intvec @iv,@jv,@is_qh,@degr; |
---|
333 | d_max = 100; |
---|
334 | @my = ""; @param="A"; @order="ds"; @out="no"; |
---|
335 | @size = size(#); |
---|
336 | if( @size>0 ) { d_max = #[1]; } |
---|
337 | if( @size>1 ) |
---|
338 | { if(typeof(#[2])!="string") |
---|
339 | { string @active; |
---|
340 | @my,@param,@order,@out = interact1(); |
---|
341 | } |
---|
342 | else |
---|
343 | { @my = #[2]; |
---|
344 | if (@size>2) {@param = #[3];} |
---|
345 | if (@size>3) {@order = #[4];} |
---|
346 | if (@size>4) {@out = #[5];} |
---|
347 | } |
---|
348 | } |
---|
349 | string myPx = @my+"Px"; |
---|
350 | string myQx = @my+"Qx"; |
---|
351 | string myOx = @my+"Ox"; |
---|
352 | string mySo = @my+"So"; |
---|
353 | @is_qh = qhweight(I); |
---|
354 | def Po = basering; |
---|
355 | setring Po; |
---|
356 | poly X_s = product(maxideal(1)); |
---|
357 | //-------- compute Ext's ------------------------------------------------------ |
---|
358 | I = std(I); |
---|
359 | qring Qo = I; |
---|
360 | matrix Mo = fetch(Po,Mo); |
---|
361 | list Lo = compute_ext(Mo,p); |
---|
362 | f0,f1,f2,e1,e2,ok_ann=Lo[1]; |
---|
363 | matrix Ls,kb1,lift1 = Lo[2],Lo[3],Lo[4]; |
---|
364 | matrix kb2,C',D' = Lo[5][2],Lo[5][3],Lo[5][5]; |
---|
365 | module ex2,Co,Do = Lo[5][1],Lo[5][4],Lo[5][6]; |
---|
366 | kill Lo; |
---|
367 | dbprint(p,"// ready: Ext1 and Ext2"); |
---|
368 | //----- test: quasi-homogeneous, choice of inf. def.-------------------------- |
---|
369 | @degrees = homog_test(@is_qh,Mo,kb1); |
---|
370 | e1' = e1; @jv = 1..e1; |
---|
371 | if (@degrees != "") |
---|
372 | { dbprint(p-1,"// Ext1 is quasi-homogeneous represented: "+@degrees); |
---|
373 | } |
---|
374 | if (defined(@active)) |
---|
375 | { "// kbase of Ext1:"; |
---|
376 | print(kb1); |
---|
377 | "// weights of kbase of Ext1 ( empty = 'not qhomog')";@degrees; |
---|
378 | kb1,lift1,e1' = interact2(kb1,@jv,lift1); |
---|
379 | } |
---|
380 | //-------- get new rings and objects ------------------------------------------ |
---|
381 | setring Po; |
---|
382 | get_rings(I,e1',0,@my,@order,@param); |
---|
383 | setring `myPx`; |
---|
384 | ideal J,m_J; |
---|
385 | ideal I_J = imap(Po,I); |
---|
386 | ideal Io = I_J; |
---|
387 | matrix Mon[e1'][1] = maxideal(1); |
---|
388 | matrix Ms = imap(Qo,Mo); |
---|
389 | matrix Ls = imap(Qo,Ls); |
---|
390 | matrix Js[1][e2]; |
---|
391 | setring `myQx`; |
---|
392 | ideal J,I_J,tet,null; attrib(null,"isSB",1); |
---|
393 | ideal m_J = fetch(`myPx`,m_J); attrib(m_J,"isSB",1); |
---|
394 | @jv=0; @jv[e1] = 0; @jv = @jv+1; @jv[nvars(`myPx`)] = 0; |
---|
395 | matrix Ms = imap(Qo,Mo); export(Ms); |
---|
396 | matrix Ls = imap(Qo,Ls); export(Ls); |
---|
397 | matrix Js[e2][1]; export(Js); |
---|
398 | matrix MASS; |
---|
399 | matrix Mon = fetch(`myPx`,Mon); |
---|
400 | matrix Mn,Ln,ML,Cup,Cup',Lift; |
---|
401 | matrix C' = imap(Qo,C'); |
---|
402 | module Co = imap(Qo,Co); attrib(Co,"isSB",1); |
---|
403 | module ex2 = imap(Qo,ex2); attrib(ex2,"isSB",1); |
---|
404 | matrix D' = imap(Qo,D'); |
---|
405 | module Do = imap(Qo,Do); attrib(Do,"isSB",1); |
---|
406 | matrix kb2 = imap(Qo,kb2); |
---|
407 | matrix kb1 = imap(Qo,kb1); |
---|
408 | matrix lift1= imap(Qo,lift1); |
---|
409 | poly X_s = imap(Po,X_s); |
---|
410 | intvec intv = e1',e1,f0,f1,f2; |
---|
411 | Ms,Ls= get_inf_def(Ms,Ls,kb1,lift1,X_s); |
---|
412 | kill kb1,lift1; |
---|
413 | dbprint(p-1,"// infinitesimal extension",Ms); |
---|
414 | //----------- start the loop -------------------------------------------------- |
---|
415 | for (@d=2;@d<=d_max;@d=@d+1) |
---|
416 | { |
---|
417 | dbprint(p-1,">>> time = "+string(timer-time)); |
---|
418 | dbprint(p-1,"==> memory = "+string(memory(0)/1000)+ |
---|
419 | ", allocated = "+string(memory(1)/1000)); |
---|
420 | dbprint(p,"// start deg = "+string(@d)); |
---|
421 | //-------- get obstruction ---------------------------------------------------- |
---|
422 | Cup = matrix(ideal(Ms*Ls),f0*f2,1); |
---|
423 | Cup = jet(Cup,@d,@jv); |
---|
424 | Cup = reduce(ideal(Cup),m_J); |
---|
425 | Cup = jet(Cup,@d,@jv); |
---|
426 | //-------- express obstruction in kbase --------------------------------------- |
---|
427 | Cup' = reduce(Cup,Do); |
---|
428 | tet = simplify(ideal(Cup'),10); |
---|
429 | if (tet[1]!=0) |
---|
430 | { dbprint(p-4,"// *"); |
---|
431 | Cup = Cup-Cup'; |
---|
432 | } |
---|
433 | Cup = lift(D',Cup); |
---|
434 | if (ok_ann) |
---|
435 | { MASS = lift_rel_kb(Cup,ex2,kb2,X_s);} |
---|
436 | else |
---|
437 | { MASS = reduce(Cup,ex2);} |
---|
438 | dbprint(p-3,"// next MATRIC-MASSEY-products", |
---|
439 | MASS-jet(MASS,@d-1,@jv)); |
---|
440 | if ( MASS==transpose(Js)) |
---|
441 | { @noObstr = 1;dbprint(p-1,"//no obstruction"); } |
---|
442 | else { @noObstr = 0; } |
---|
443 | //-------- obtain equations of base space ------------------------------------- |
---|
444 | if (@noObstr == 0) |
---|
445 | { Js = MASS; |
---|
446 | dbprint(p-2,"// next equation of base space:",simplify(ideal(Js),10)); |
---|
447 | setring `myPx`; |
---|
448 | Js = imap(`myQx`,Js); |
---|
449 | degBound=@d+1; |
---|
450 | J = std(ideal(Js)); |
---|
451 | m_J = std(ideal(Mon)*J); |
---|
452 | degBound=0; |
---|
453 | I_J = Io,J; attrib(I_J,"isSB",1); |
---|
454 | //-------- obtain new base ring ----------------------------------------------- |
---|
455 | kill `myOx`; |
---|
456 | qring `myOx` = I_J; |
---|
457 | ideal null,tet; attrib(null,"isSB",1); |
---|
458 | matrix Ms = imap(`myQx`,Ms); |
---|
459 | matrix Ls = imap(`myQx`,Ls); |
---|
460 | matrix Mn,Ln,ML,Cup,Cup',Lift; |
---|
461 | matrix C' = imap(Qo,C'); |
---|
462 | module Co = imap(Qo,Co); attrib(Co,"isSB",1); |
---|
463 | module ex2 = imap(Qo,ex2); attrib(ex2,"isSB",1); |
---|
464 | matrix kb2 = imap(Qo,kb2); |
---|
465 | poly X_s = imap(Po,X_s); |
---|
466 | } |
---|
467 | //-------- get lifts ---------------------------------------------------------- |
---|
468 | setring `myOx`; |
---|
469 | ML = matrix(reduce(ideal(Ms*Ls),null),f0,f2); |
---|
470 | Cup = matrix(ideal(ML),f0*f2,1); |
---|
471 | Cup = jet(Cup,@d,@jv); |
---|
472 | Cup'= reduce(Cup,Co); |
---|
473 | tet = simplify(ideal(Cup'),10); |
---|
474 | if (tet[1]!=0) |
---|
475 | { dbprint(p-4,"// #"); |
---|
476 | Cup = Cup-Cup'; |
---|
477 | } |
---|
478 | Lift = lift(C',Cup); |
---|
479 | Mn = matrix(ideal(Lift),f0,f1); |
---|
480 | Ln = matrix(ideal(Lift[f0*f1+1..nrows(Lift),1]),f1,f2); |
---|
481 | Ms = Ms-Mn; |
---|
482 | Ls = Ls-Ln; |
---|
483 | dbprint(p-3,"// next extension of Mo",Mn); |
---|
484 | dbprint(p-3,"// next extension of syz(Mo)",Ln); |
---|
485 | ML = reduce(ideal(Ms*Ls),null); |
---|
486 | //--------- test: finished ---------------------------------------------------- |
---|
487 | tet = simplify(ideal(ML),10); |
---|
488 | if (tet[1]==0) { dbprint(p-1,"// finished in degree ",@d);} |
---|
489 | //---------fetch results into Qx and Px --------------------------------------- |
---|
490 | setring `myPx`; |
---|
491 | Ms = fetch(`myOx`,Ms); |
---|
492 | Ls = fetch(`myOx`,Ls); |
---|
493 | setring `myQx`; |
---|
494 | Ms = fetch(`myOx`,Ms); |
---|
495 | Ls = fetch(`myOx`,Ls); |
---|
496 | ML = Ms*Ls; |
---|
497 | ML = matrix(reduce(ideal(ML),null),f0,f2); |
---|
498 | tet = imap(`myOx`,tet); |
---|
499 | if (tet[1]==0) { break;} |
---|
500 | } |
---|
501 | //------- end of loop, final output ------------------------------------------- |
---|
502 | if (@out != "no") |
---|
503 | { string out = @out+"_"+string(@d); |
---|
504 | "// writing file '"+out+"' with matrix Js, matrix Ms, matrix Ls |
---|
505 | ready for reading in rings "+myPx+" or "+myQx; |
---|
506 | write(out,"matrix Js[1][",e2,"]=",Js,";matrix Ms[",f0,"][",f1,"]=",Ms, |
---|
507 | ";matrix Ls[",f1,"][",f2,"]=",Ls,";"); |
---|
508 | } |
---|
509 | dbprint(p,">>> TIME = "+string(timer-time)); |
---|
510 | if (@is_qh != 0) |
---|
511 | { @degr = qhweight(ideal(Js)); |
---|
512 | @degr = @degr[1..e1']; |
---|
513 | dbprint(p-1,"// quasi-homogeneous weights of miniversal base",@degr); |
---|
514 | } |
---|
515 | dbprint(p-1,"// Result belongs to qring "+myQx, |
---|
516 | "// Equations of total space of miniversal deformation are in Js", |
---|
517 | simplify(ideal(Js),10), |
---|
518 | "// Matrix of the deformed module is Ms and lifted syzygies are Ls.", |
---|
519 | "// Make "+myQx+" the basering and list objects defined in "+myQx+ |
---|
520 | " by typing:", |
---|
521 | " listvar(ring);setring "+myQx+"; show("+myQx+");listvar(ideal);"+ |
---|
522 | "listvar(matrix);", |
---|
523 | "// NOTE: rings "+myQx+", "+myOx+", "+mySo+" are still alive!", |
---|
524 | "// (use: 'kill_rings("+@my+");' to remove them)"); |
---|
525 | return(); |
---|
526 | } |
---|
527 | example |
---|
528 | { "EXAMPLE:"; echo = 2; |
---|
529 | int p = printlevel; |
---|
530 | printlevel = 1; |
---|
531 | ring Ro = 0,(x,y),wp(3,4); |
---|
532 | ideal Io = x4+y3; |
---|
533 | matrix Mo[2][2] = x2,y,-y2,x2; |
---|
534 | mod_versal(Mo,Io); |
---|
535 | printlevel = p; |
---|
536 | kill Px,Qx,So; |
---|
537 | } |
---|
538 | //============================================================================= |
---|
539 | /////////////////////////////////////////////////////////////////////////////// |
---|
540 | proc kill_rings(list #) |
---|
541 | USAGE: kill_rings([string]); |
---|
542 | Sub-procedure: kills exported rings of 'versal' and |
---|
543 | 'mod_versal' with prefix 'string' |
---|
544 | { |
---|
545 | string my,br; |
---|
546 | if (size(#)>0) { my = #[1];} |
---|
547 | string na=nameof(basering); |
---|
548 | br = my+"Qx"; |
---|
549 | if (defined(`br`)) { kill `br`;} |
---|
550 | br = my+"Px"; |
---|
551 | if (defined(`br`)) { kill `br`;} |
---|
552 | br = my+"So"; |
---|
553 | if (defined(`br`)) { kill `br`;} |
---|
554 | br = my+"Ox"; |
---|
555 | if (defined(`br`)) { kill `br`;} |
---|
556 | br = my+"Sx"; |
---|
557 | if (defined(`br`)) { kill `br`} |
---|
558 | if (defined(basering)==0) |
---|
559 | { "// choose new basering?"; |
---|
560 | listvar(ring); |
---|
561 | } |
---|
562 | return(); |
---|
563 | } |
---|
564 | /////////////////////////////////////////////////////////////////////////////// |
---|
565 | proc compute_ext(matrix Mo,int p) |
---|
566 | |
---|
567 | Sub-procedure: obtain Ext1 and Ext2 and other objects used by mod_versal |
---|
568 | { |
---|
569 | int l,f0,f1,f2,f3,e1,e2,ok_ann; |
---|
570 | module Co,Do,ima,ex1,ex2; |
---|
571 | matrix M0,M1,M2,ker,kb1,lift1,kb2,A,B,C,D; |
---|
572 | //------- resM --------------------------------------------------------------- |
---|
573 | list resM = res(Mo,3); |
---|
574 | M0 = resM[1]; |
---|
575 | M1 = resM[2]; |
---|
576 | M2 = resM[3]; kill resM; |
---|
577 | f0 = nrows(M0); |
---|
578 | f1 = ncols(M0); |
---|
579 | f2 = ncols(M1); |
---|
580 | f3 = ncols(M2); |
---|
581 | //------ compute Ext^2 ------------------------------------------------------ |
---|
582 | B = kohom(M0,f3); |
---|
583 | A = kontrahom(M2,f0); |
---|
584 | D = modulo(A,B); |
---|
585 | Do = std(D); |
---|
586 | ima = kohom(M0,f2),kontrahom(M1,f0); |
---|
587 | ex2 = modulo(D,ima); |
---|
588 | ex2 = std(ex2); |
---|
589 | e2 = vdim(ex2); |
---|
590 | kb2 = kbase(ex2); |
---|
591 | dbprint(p,"// vdim (Ext^2) = "+string(e2)); |
---|
592 | //------ test: max = Ann(Ext2) ----------------------------------------------- |
---|
593 | for (l=1;l<=e2;l=l+1) |
---|
594 | { ok_ann = ok_ann+ord(kb2[l]); |
---|
595 | } |
---|
596 | if (ok_ann==0) |
---|
597 | { e2 =nrows(ex2); |
---|
598 | dbprint(p,"// Ann(Ext2) is maximal"); |
---|
599 | } |
---|
600 | //------ compute Ext^1 ------------------------------------------------------- |
---|
601 | B = kohom(M0,f2); |
---|
602 | A = kontrahom(M1,f0); |
---|
603 | ker = modulo(A,B); |
---|
604 | ima = kohom(M0,f1),kontrahom(M0,f0); |
---|
605 | ex1 = modulo(ker,ima); |
---|
606 | ex1 = std(ex1); |
---|
607 | e1 = vdim(ex1); |
---|
608 | dbprint(p,"// vdim (Ext^1) = "+string(e1)); |
---|
609 | kb1 = kbase(ex1); |
---|
610 | kb1 = ker*kb1; |
---|
611 | C = concat(A,B); |
---|
612 | Co = std(C); |
---|
613 | //------ compute the liftings of Ext^1 --------------------------------------- |
---|
614 | lift1 = A*kb1; |
---|
615 | lift1 = lift(B,lift1); |
---|
616 | intvec iv = f0,f1,f2,e1,e2,ok_ann; |
---|
617 | list L' = ex2,kb2,C,Co,D,Do; |
---|
618 | return(iv,M1,kb1,lift1,L'); |
---|
619 | } |
---|
620 | ////////////////////////////////////////////////////////////////////////////// |
---|
621 | proc get_rings(ideal Io,int e1,int switch, list #) |
---|
622 | |
---|
623 | Sub-procedure: creating ring-extensions |
---|
624 | { |
---|
625 | def Po = basering; |
---|
626 | string my; |
---|
627 | string my_ord = "ds"; |
---|
628 | string my_var = "A"; |
---|
629 | if (size(#)>2) |
---|
630 | { |
---|
631 | my = #[1]; |
---|
632 | my_ord = #[2]; |
---|
633 | my_var = #[3]; |
---|
634 | } |
---|
635 | string my_Px = my+"Px"; |
---|
636 | string my_Qx = my+"Qx"; |
---|
637 | string my_Ox = my+"Ox"; |
---|
638 | string my_So = my+"So"; |
---|
639 | extendring(my_Px,e1,my_var,my_ord); |
---|
640 | ideal Io = imap(Po,Io); attrib(Io,"isSB",1); |
---|
641 | my ="qring "+my_Qx+" = Io; export("+my_Qx+");"; |
---|
642 | execute(my); |
---|
643 | if (switch) |
---|
644 | { |
---|
645 | setring `my_Px`; |
---|
646 | my = "qring "+my_Ox+" = std(ideal(0));export("+my_Ox+");"; |
---|
647 | } |
---|
648 | else |
---|
649 | { |
---|
650 | my = "def "+my_Ox+" = "+my_Qx+";export("+my_Ox+");"; |
---|
651 | } |
---|
652 | execute(my); |
---|
653 | defring(my_So,charstr(Po),e1,my_var,my_ord); |
---|
654 | return(); |
---|
655 | } |
---|
656 | ////////////////////////////////////////////////////////////////////////////// |
---|
657 | proc get_inf_def(list #); |
---|
658 | |
---|
659 | Sub-procedure: compute infinitesimal family of a module and its syzygies |
---|
660 | from a kbase of Ext1 and its lifts |
---|
661 | { |
---|
662 | matrix Ms = #[1]; |
---|
663 | matrix Ls = #[2]; |
---|
664 | matrix kb1 = #[3]; |
---|
665 | matrix li1 = #[4]; |
---|
666 | int e1,f0,f1,f2; |
---|
667 | poly X_s = #[5]; |
---|
668 | e1 = ncols(kb1); |
---|
669 | f0 = nrows(Ms); |
---|
670 | f1 = nrows(Ls); |
---|
671 | f2 = ncols(Ls); |
---|
672 | int l; |
---|
673 | for (l=1;l<=e1;l=l+1) |
---|
674 | { |
---|
675 | Ms = Ms + var(l)*matrix(ideal(kb1[l]),f0,f1); |
---|
676 | Ls = Ls - var(l)*matrix(ideal(li1[l]),f1,f2); |
---|
677 | } |
---|
678 | return(Ms,Ls); |
---|
679 | } |
---|
680 | ////////////////////////////////////////////////////////////////////////////// |
---|
681 | proc lift_rel_kb (module N, module M, list #) |
---|
682 | |
---|
683 | USAGE lift_rel_kb(N,M[,kbaseM,p]); |
---|
684 | ASSUME [p a monomial ] or the product of all variables |
---|
685 | N, M modules of same rank, |
---|
686 | M depending only on variables not in p and vdim(M) finite in this ring, |
---|
687 | [ kbaseM the kbase of M in the subring given by variables not in p ] |
---|
688 | warning: check that these assumtions are fulfilled! |
---|
689 | RETURN matrix A, whose j-th columnes present the coeff's of N[j] in kbaseM, |
---|
690 | i.e. kbaseM*A = reduce(N,std(M)) |
---|
691 | EXAMPLE example lift_rel_kb; shows examples |
---|
692 | { |
---|
693 | poly p = product(maxideal(1)); |
---|
694 | M = std(M); |
---|
695 | matrix A; |
---|
696 | if (size(#)>0) { p=#[2]; module kbaseM=#[1];} |
---|
697 | else |
---|
698 | { if (vdim(M)<=0) { "// vdim(M) not finite";return(A);} |
---|
699 | module kbaseM = kbase(M); |
---|
700 | } |
---|
701 | N = reduce(N,M); |
---|
702 | if (simplify(N,10)[1]==[0]) {return(A);} |
---|
703 | A = coeffs(N,kbaseM,p); |
---|
704 | return(A); |
---|
705 | } |
---|
706 | example |
---|
707 | { |
---|
708 | "EXAMPLE"; echo=2; |
---|
709 | ring r=0,(A,B,x,y),dp; |
---|
710 | module M = [x2,xy],[xy,y3],[y2],[0,x]; |
---|
711 | module kbaseM = [1],[x],[xy],[y],[0,1],[0,y],[0,y2]; |
---|
712 | poly f=xy; |
---|
713 | module N = [AB,BBy],[A3xy+x4,AB*(1+y2)]; |
---|
714 | matrix A = lift_rel_kb(N,M,kbaseM,f); |
---|
715 | print(A); |
---|
716 | "TEST:"; |
---|
717 | print(matrix(kbaseM)*A-matrix(reduce(N,std(M)))); |
---|
718 | "2nd EXAMPLE"; |
---|
719 | ring r = 100,(x,y),dp; |
---|
720 | ideal I = x2+y2,x2y; |
---|
721 | module M = jacob(I)+I*freemodule(2); |
---|
722 | module N = [x+y,1+x2+xy]; |
---|
723 | matrix A = lift_rel_kb(N,M); |
---|
724 | print(A); |
---|
725 | print(kbase(std(M))*A); |
---|
726 | print(reduce(N,std(M))); |
---|
727 | } |
---|
728 | /////////////////////////////////////////////////////////////////////////////// |
---|
729 | proc interact1 () |
---|
730 | |
---|
731 | Sub_procedure: asking for and reading your input-strings |
---|
732 | { |
---|
733 | string my = "@"; |
---|
734 | string str,out,my_ord,my_var; |
---|
735 | my_ord = "ds"; |
---|
736 | my_var = "A"; |
---|
737 | "INPUT: name of output-file (ENTER = no output, do not use \"my\"!)"; |
---|
738 | str = read(""); |
---|
739 | if (size(str)>1) |
---|
740 | { out = str[1..size(str)-1];} |
---|
741 | else |
---|
742 | { out = "no";} |
---|
743 | "INPUT: prefix-string of ring-extension (ENTER = '@')"; |
---|
744 | str = read(""); |
---|
745 | if ( size(str) > 1 ) |
---|
746 | { my = str[1..size(str)-1]; } |
---|
747 | "INPUT:parameter-string |
---|
748 | (give a letter corresponding to first new variable followed by the next letters, |
---|
749 | or 'T(' - a letter + '(' - getting a string of indexed variables) |
---|
750 | (ENTER = A) :"; |
---|
751 | str = read(""); |
---|
752 | if (size(str)>1) { my_var=str[1..size(str)-1]; } |
---|
753 | "INPUT:order-string (local or weighted!) (ENTER = ds) :"; |
---|
754 | str = read(""); |
---|
755 | if (size(str)>1) { my_ord=str[1..size(str)-1]; } |
---|
756 | if( find(my_ord,"s")+find(my_ord,"w") == 0 ) |
---|
757 | { "// ordering must be an local! changed into 'ds'"; |
---|
758 | my_ord = "ds"; |
---|
759 | } |
---|
760 | return(my,my_var,my_ord,out); |
---|
761 | } |
---|
762 | /////////////////////////////////////////////////////////////////////////////// |
---|
763 | proc interact2 (matrix A, intvec col_vec, list #) |
---|
764 | |
---|
765 | Sub-procedure: asking for and reading your input |
---|
766 | { |
---|
767 | module B,C; |
---|
768 | matrix D; |
---|
769 | int flag; |
---|
770 | if (size(#)>0) { D=#[1];flag=1;} |
---|
771 | int t1 = ncols(A); |
---|
772 | ">>Do you want all deformations? (ENTER=yes)"; |
---|
773 | string str = read(""); |
---|
774 | if (size(str)>1) |
---|
775 | { ">> Choose columnes of the matrix"; |
---|
776 | ">> (Enter = all columnes)"; |
---|
777 | "INPUT (number of columnes to use as integer-list 'i_1,i_2,.. ,i_t' ):"; |
---|
778 | string columnes = read(""); |
---|
779 | if (size(columnes)<2) {columnes=string(col_vec);} |
---|
780 | t1 = size(columnes)/2; |
---|
781 | int l,l1; |
---|
782 | for (l=1;l<=t1;l=l+1) |
---|
783 | { |
---|
784 | execute("l1= "+columnes[2*l-1]+";"); |
---|
785 | B[l] = A[l1]; |
---|
786 | if(flag) { C[l]=D[l1];} |
---|
787 | } |
---|
788 | A = matrix(B,nrows(A),size(B)); |
---|
789 | D = matrix(C,nrows(D),size(C)); |
---|
790 | } |
---|
791 | return(A,D,t1); |
---|
792 | } |
---|
793 | /////////////////////////////////////////////////////////////////////////////// |
---|
794 | proc negative_part(intvec iv) |
---|
795 | |
---|
796 | RETURNS intvec of indices of jv having negative entries (or iv, if non) |
---|
797 | { |
---|
798 | intvec jv; |
---|
799 | int l,k; |
---|
800 | for (l=1;l<=size(iv);l=l+1) |
---|
801 | { if (iv[l]<0) |
---|
802 | { k = k+1; |
---|
803 | jv[k]=l; |
---|
804 | } |
---|
805 | } |
---|
806 | if (jv==0) {jv=1; dbprint(printlevel-1,"// empty negative part, return all ";} |
---|
807 | return(jv); |
---|
808 | } |
---|
809 | /////////////////////////////////////////////////////////////////////////////// |
---|
810 | proc find_ord(matrix A, intvec w_vec) |
---|
811 | |
---|
812 | Sub-proc: return martix ord(a_ij) with respect to weight_vec, or |
---|
813 | 0 if A non-qh |
---|
814 | { |
---|
815 | int @r = nrows(A); |
---|
816 | int @c = ncols(A); |
---|
817 | int i,j; |
---|
818 | string ord_str = "wp("+string(w_vec)+")"; |
---|
819 | def br = basering; |
---|
820 | changeord("nr",ord_str); |
---|
821 | matrix A = imap(br,A); |
---|
822 | intmat degA[@r][@c]; |
---|
823 | if (homog(ideal(A))) |
---|
824 | { for (i=1;i<=@r;i=i+1) |
---|
825 | { for(j=1;j<=@c;j=j+1) |
---|
826 | { degA[i,j]=ord(A[i,j]); } |
---|
827 | } |
---|
828 | } |
---|
829 | setring br; |
---|
830 | kill nr; |
---|
831 | return(degA); |
---|
832 | } |
---|
833 | ////////////////////////////////////////////////////////////////////////////////// |
---|
834 | proc homog_test(intvec w_vec, matrix Mo, matrix A) |
---|
835 | |
---|
836 | Sub proc: return relative weight string of columnes of A with respect |
---|
837 | to the given w_vec and to Mo, or "" if not qh |
---|
838 | NOTE: * means weight is not determined |
---|
839 | { |
---|
840 | int k,l; |
---|
841 | intvec tv; |
---|
842 | string @nv; |
---|
843 | int @r = nrows(A); |
---|
844 | int @c = ncols(A); |
---|
845 | A = concat(matrix(ideal(Mo),@r,1),A); |
---|
846 | intmat a = find_ord(A,w_vec); |
---|
847 | intmat b[@r][@c]; |
---|
848 | for (l=1;l<=@c;l=l+1) |
---|
849 | { |
---|
850 | for (k=1;k<=@r;k=k+1) |
---|
851 | { if (A[k,l+1]!=0) |
---|
852 | { b[k,l] = a[k,l+1]-a[k,1];} |
---|
853 | } |
---|
854 | tv = 0; |
---|
855 | for (k=1;k<=@r;k=k+1) |
---|
856 | { if (A[k,l+1]*A[k,1]!=0) |
---|
857 | {tv = tv,b[k,l];} |
---|
858 | } |
---|
859 | if (size(tv)>1) |
---|
860 | { k = tv[2]; |
---|
861 | tv = tv[2..size(tv)]; tv = tv -k; |
---|
862 | if (tv==0) { @nv = @nv+string(-k)+",";} |
---|
863 | else {return("");} |
---|
864 | } |
---|
865 | else { @nv = @nv+"*,";} |
---|
866 | } |
---|
867 | @nv = @nv[1..size(@nv)-1]; |
---|
868 | return(@nv); |
---|
869 | } |
---|
870 | ////////////////////////////////////////////////////////////////////////////////// |
---|
871 | proc homog_t(intvec d_vec, matrix Fo, matrix A) |
---|
872 | |
---|
873 | Sub-procedure: Computing relative (with respect to flatten(Fo)) weight_vec |
---|
874 | of columnes of A (return zero if Fo or A not qh) |
---|
875 | { |
---|
876 | Fo = matrix(Fo,nrows(A),1); |
---|
877 | A = concat(Fo,A); |
---|
878 | A = transpose(A); |
---|
879 | def br = basering; |
---|
880 | string o_str = "wp("+string(d_vec)+")"; |
---|
881 | changeord("nr",o_str); |
---|
882 | module A = fetch(br,A); |
---|
883 | intvec dv; |
---|
884 | int l = homog(A) ; |
---|
885 | if (l==0) {setring br; kill nr; return(l);} |
---|
886 | dv = attrib(A,"isHomog"); |
---|
887 | l = dv[1]; |
---|
888 | dv = dv[2..size(dv)]; |
---|
889 | dv = dv-l; |
---|
890 | setring br; |
---|
891 | kill nr; |
---|
892 | return(dv); |
---|
893 | } |
---|