Changeset dcafdb in git
- Timestamp:
- Apr 1, 1999, 12:09:53 AM (24 years ago)
- Branches:
- (u'spielwiese', '828514cf6e480e4bafc26df99217bf2a1ed1ef45')
- Children:
- 5f89ebcfc3931375fa6e2ad6e495331a4064a4e3
- Parents:
- 6c87725945caa48b135d716568d9cf8b968ba527
- Location:
- modules
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
modules/kernel/kernel.mod
r6c8772 rdcafdb 1 1 /* 2 * $Id: kernel.mod,v 1. 1 1998-11-19 15:49:22krueger Exp $2 * $Id: kernel.mod,v 1.2 1999-03-31 22:09:53 krueger Exp $ 3 3 * 4 4 * Test mod fuer modgen 5 5 */ 6 6 module="kernel"; 7 version="$Id: kernel.mod,v 1. 1 1998-11-19 15:49:22krueger Exp $";7 version="$Id: kernel.mod,v 1.2 1999-03-31 22:09:53 krueger Exp $"; 8 8 info=" 9 9 LIBRARY: kernel.lib PROCEDURES OF GENERAL TYPE WRITEN IN C … … 16 16 /*cxxsource = sscanf.cc*/ 17 17 18 proc proclist=kProclist; 18 proc proclist { 19 function=piShowProcList; 20 }; 19 21 20 proc nn(string)=iiKernelMiscNN; 22 proc ideal toid(ideal) { 23 function=toid; 24 } 25 26 /* 27 proc string nn(string) { 28 function=iiKernelMiscNN; 29 }; 30 */ 21 31 22 32 /*proc sscanf(string, string) = IOsscanf; */ -
modules/pcv/pcv.mod
r6c8772 rdcafdb 1 1 module="pcv"; 2 2 3 version="$Id: pcv.mod,v 1. 2 1999-02-11 11:39:29 mschulzeExp $";3 version="$Id: pcv.mod,v 1.3 1999-03-31 22:08:13 krueger Exp $"; 4 4 info=" 5 5 LIBRARY: pcv.so CONVERSION BETWEEN POLYS AND COEF VECTORS … … 16 16 cxxsource = pcv/pcv.cc 17 17 18 proc MinDeg(poly) = pcvMinDeg; 19 proc MaxDeg(poly) = pcvMaxDeg; 20 proc P2CV(list,int,int) = pcvP2CV; 21 proc CV2P(list,int,int) = pcvCV2P; 22 proc Dim(int,int) = pcvDim; 23 proc Basis(int,int) = pcvBasis; 18 proc int MinDeg(poly) { 19 function=pcvMinDeg; 20 } 21 22 proc int MaxDeg(poly) { 23 function=pcvMaxDeg; 24 } 25 26 proc list P2CV(list,int,int) { 27 C={ 28 /* check if current RingHandle is set */ 29 if(currRingHdl == NULL) 30 { 31 WerrorS("no ring active"); 32 return TRUE; 33 } 34 }; 35 function=pcvP2CV; 36 } 37 38 proc list CV2P(list,int,int) 39 { 40 C={ /* check if current RingHandle is set */ 41 if(currRingHdl == NULL) 42 { 43 WerrorS("no ring active"); 44 return TRUE; 45 } 46 }; 47 function=pcvCV2P;} 48 49 proc int Dim(int,int) 50 { 51 C = { 52 /* check if current RingHandle is set */ 53 if(currRingHdl == NULL) 54 { 55 WerrorS("no ring active"); 56 return TRUE; 57 } 58 }; 59 function=pcvDim; 60 61 } 62 63 proc list Basis(int,int) 64 { 65 C = { 66 /* check if current RingHandle is set */ 67 if(currRingHdl == NULL) 68 { 69 WerrorS("no ring active"); 70 return TRUE; 71 } 72 }; 73 function=pcvBasis;} 74
Note: See TracChangeset
for help on using the changeset viewer.