Changeset 2e2f8f in git
- Timestamp:
- Feb 21, 2014, 5:56:05 PM (10 years ago)
- Branches:
- (u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
- Children:
- f3703ede5c22d96bd2f3453cbb4d60e88ccec264
- Parents:
- 5d25c42ce5a7cfe24a13632fa0f7cc6b85961ccb
- Location:
- libpolys/coeffs
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
libpolys/coeffs/OPAE.cc
r5d25c42 r2e2f8f 28 28 // DEFINITION DER FUNKTIONEN 29 29 30 number nAEAdd(number a, number b, const coeffs r)30 number nAEAdd(number a, number b, const coeffs) 31 31 { 32 32 int_poly* f=reinterpret_cast<int_poly*> (a); … … 38 38 } 39 39 40 number nAEMult(number a, number b, const coeffs r)40 number nAEMult(number a, number b, const coeffs) 41 41 { 42 42 int_poly* f=reinterpret_cast<int_poly*> (a); … … 48 48 } 49 49 50 number nAESub(number a, number b, const coeffs r)50 number nAESub(number a, number b, const coeffs) 51 51 { 52 52 int_poly* f=reinterpret_cast<int_poly*> (a); … … 59 59 60 60 61 number nAEDiv(number a, number b, const coeffs r)61 number nAEDiv(number a, number b, const coeffs) 62 62 { 63 63 int_poly* f=reinterpret_cast<int_poly*> (a); … … 70 70 71 71 72 number nAEIntDiv(number a, number b, const coeffs r)72 number nAEIntDiv(number a, number b, const coeffs) 73 73 { 74 74 … … 81 81 } 82 82 83 number nAEIntMod(number a, number b,const coeffs r)83 number nAEIntMod(number a, number, const coeffs) 84 84 { 85 85 return a; 86 86 } 87 87 88 number nAEExactDiv(number a, number b, const coeffs r)88 number nAEExactDiv(number a, number b, const coeffs) 89 89 { 90 90 int_poly* f=reinterpret_cast<int_poly*> (a); … … 98 98 99 99 100 number nAEInit(long i, const coeffs r)100 number nAEInit(long i, const coeffs) 101 101 { 102 102 mpz_t m; … … 108 108 } 109 109 110 number nAEInitMPZ(mpz_t m, const coeffs r)110 number nAEInitMPZ(mpz_t m, const coeffs) 111 111 { 112 112 int_poly* res=new int_poly; … … 117 117 118 118 119 int nAESize (number a, const coeffs r)119 int nAESize (number a, const coeffs) 120 120 { 121 121 int_poly* f=reinterpret_cast<int_poly*> (a); … … 123 123 } 124 124 125 int nAEInt(number & a,const coeffs r)125 int nAEInt(number &, const coeffs) 126 126 { 127 127 return 1; … … 129 129 130 130 131 number nAEMPZ(number a, const coeffs r)131 number nAEMPZ(number a, const coeffs) 132 132 { 133 133 return a; … … 135 135 136 136 137 number nAENeg(number c, const coeffs r)137 number nAENeg(number c, const coeffs) 138 138 { 139 139 int_poly* f=reinterpret_cast<int_poly*> (c); … … 144 144 } 145 145 146 number nAECopy(number c, const coeffs r)146 number nAECopy(number c, const coeffs) 147 147 { 148 148 return (number) c; 149 149 } 150 150 151 number nAERePart(number c, const coeffs r)151 number nAERePart(number c, const coeffs) 152 152 { 153 153 return (number) c; 154 154 } 155 155 156 number nAEImPart(number c, const coeffs r)156 number nAEImPart(number c, const coeffs) 157 157 { 158 158 return (number) c; 159 159 } 160 160 161 void nAEWriteLong (number &a, const coeffs r)161 void nAEWriteLong (number &a, const coeffs) 162 162 { 163 163 int_poly* f=reinterpret_cast <int_poly*>(a); … … 166 166 } 167 167 168 void nAEWriteShort (number &a, const coeffs r)168 void nAEWriteShort (number &a, const coeffs) 169 169 { 170 170 int_poly* f=reinterpret_cast <int_poly*>(a); … … 174 174 175 175 176 const char * nAERead (const char * s, number *a,const coeffs r)176 const char * nAERead (const char *, number *, const coeffs) 177 177 { 178 178 char* c=new char; … … 181 181 } 182 182 183 number nAENormalize (number a, number b,const coeffs r) // ?183 number nAENormalize (number a, number, const coeffs) // ? 184 184 { 185 185 return a; 186 186 } 187 187 188 BOOLEAN nAEGreater (number a, number b, const coeffs r)188 BOOLEAN nAEGreater (number a, number b, const coeffs) 189 189 { 190 190 int_poly* f=reinterpret_cast<int_poly*> (a); … … 194 194 } 195 195 196 BOOLEAN nAEEqual (number a, number b, const coeffs r)196 BOOLEAN nAEEqual (number a, number b, const coeffs) 197 197 { 198 198 int_poly* f=reinterpret_cast<int_poly*> (a); … … 202 202 } 203 203 204 BOOLEAN nAEIsZero (number a, const coeffs r)204 BOOLEAN nAEIsZero (number a, const coeffs) 205 205 { 206 206 int_poly* f=reinterpret_cast<int_poly*> (a); … … 209 209 } 210 210 211 BOOLEAN nAEIsOne (number a, const coeffs r)211 BOOLEAN nAEIsOne (number a, const coeffs) 212 212 { 213 213 int_poly* f=reinterpret_cast<int_poly*> (a); … … 216 216 } 217 217 218 BOOLEAN nAEIsMOne (number a, const coeffs r)218 BOOLEAN nAEIsMOne (number a, const coeffs) 219 219 { 220 220 int_poly* f=reinterpret_cast<int_poly*> (a); … … 229 229 } 230 230 231 void nAEPower (number a, int i, number * result,const coeffs r)231 void nAEPower (number, int, number *, const coeffs) 232 232 { 233 233 return; 234 234 } 235 235 236 number nAEGetDenom (number & a, const coeffs r)236 number nAEGetDenom (number &, const coeffs) 237 237 { 238 238 return (number) 1; 239 239 } 240 240 241 number nAEGetNumerator (number &a, const coeffs r)241 number nAEGetNumerator (number &a, const coeffs) 242 242 { 243 243 return a; 244 244 } 245 245 246 number nAEGcd (number a, number b,const coeffs r)246 number nAEGcd (number a, number b, const coeffs) 247 247 { 248 248 int_poly* f=reinterpret_cast<int_poly*> (a); … … 253 253 } 254 254 255 number nAELcm (number a, number b,const coeffs r)255 number nAELcm (number a, number b, const coeffs) 256 256 { 257 257 int_poly* f=reinterpret_cast<int_poly*> (a); … … 265 265 } 266 266 267 void nAEDelete (number * a, const coeffs r)267 void nAEDelete (number *, const coeffs) 268 268 { 269 269 return; … … 271 271 272 272 /* 273 number nAESetMap (number a, const coeffs r)273 number nAESetMap (number a, const coeffs) 274 274 { 275 275 return a; 276 276 } 277 277 */ 278 char* nAEName (number a, const coeffs r)278 char* nAEName (number, const coeffs) 279 279 { char *c=new char; 280 280 *c='c'; … … 282 282 } 283 283 284 void nAEInpMult (number & a, number b,const coeffs r)284 void nAEInpMult (number &, number, const coeffs) 285 285 { 286 286 return ; 287 287 } 288 288 289 void nAECoeffWrite (const coeffs r, BOOLEAN details)289 void nAECoeffWrite (const coeffs, BOOLEAN) 290 290 { 291 291 return; 292 292 } 293 293 294 BOOLEAN nAEClearContent (number a,const coeffs r)294 BOOLEAN nAEClearContent (number, const coeffs) 295 295 { 296 296 return FALSE; 297 297 } 298 298 299 BOOLEAN nAEClearDenominators (number a,const coeffs r)299 BOOLEAN nAEClearDenominators (number, const coeffs) 300 300 { 301 301 return FALSE; … … 307 307 308 308 309 BOOLEAN n_AEInitChar(coeffs r,void * p) // vlt noch void* p hin 310 { 311 309 BOOLEAN n_AEInitChar(coeffs r, void *) 310 { 312 311 r->ch = 0; 313 312 r->cfKillChar=NULL; -
libpolys/coeffs/OPAEQ.cc
r5d25c42 r2e2f8f 29 29 // DEFINITION DER FUNKTIONEN 30 30 31 number nAEQAdd(number a, number b, const coeffs r)31 number nAEQAdd(number a, number b, const coeffs) 32 32 { 33 33 Q_poly* f=reinterpret_cast<Q_poly*> (a); … … 39 39 } 40 40 41 number nAEQMult(number a, number b, const coeffs r)41 number nAEQMult(number a, number b, const coeffs) 42 42 { 43 43 Q_poly* f=reinterpret_cast<Q_poly*> (a); … … 49 49 } 50 50 51 number nAEQSub(number a, number b, const coeffs r)51 number nAEQSub(number a, number b, const coeffs) 52 52 { 53 53 Q_poly* f=reinterpret_cast<Q_poly*> (a); … … 60 60 61 61 62 number nAEQDiv(number a, number b, const coeffs r)62 number nAEQDiv(number a, number b, const coeffs) 63 63 { 64 64 Q_poly* f=reinterpret_cast<Q_poly*> (a); … … 72 72 73 73 74 number nAEQIntDiv(number a, number b, const coeffs r)74 number nAEQIntDiv(number a, number b, const coeffs) 75 75 { 76 76 … … 83 83 } 84 84 85 number nAEQIntMod(number a, number b,const coeffs r)85 number nAEQIntMod(number a, number, const coeffs) 86 86 { 87 87 return a; 88 88 } 89 89 90 number nAEQExactDiv(number a, number b, const coeffs r)90 number nAEQExactDiv(number a, number b, const coeffs) 91 91 { 92 92 Q_poly* f=reinterpret_cast<Q_poly*> (a); … … 101 101 102 102 103 number nAEQInit(long i, const coeffs r)103 number nAEQInit(long i, const coeffs) 104 104 { 105 105 number res = (number) i; … … 107 107 } 108 108 109 number nAEQInitMPZ(mpz_t m, const coeffs r)109 number nAEQInitMPZ(mpz_t m, const coeffs) 110 110 { 111 111 number res= (number) m; … … 113 113 } 114 114 115 int nAEQSize (number a, const coeffs r)115 int nAEQSize (number a, const coeffs) 116 116 { 117 117 Q_poly* f=reinterpret_cast<Q_poly*> (a); … … 119 119 } 120 120 121 int nAEQInt(number & a,const coeffs r)121 int nAEQInt(number &, const coeffs) 122 122 { 123 123 return 1; … … 125 125 126 126 127 number nAEQMPZ(number a, const coeffs r)127 number nAEQMPZ(number a, const coeffs) 128 128 { 129 129 return a; … … 131 131 132 132 133 number nAEQNeg(number c, const coeffs r)133 number nAEQNeg(number c, const coeffs) 134 134 { 135 135 Q_poly* f=reinterpret_cast<Q_poly*> (c); … … 140 140 } 141 141 142 number nAEQCopy(number c, const coeffs r)142 number nAEQCopy(number c, const coeffs) 143 143 { 144 144 return (number) c; 145 145 } 146 146 147 number nAEQRePart(number c, const coeffs r)147 number nAEQRePart(number c, const coeffs) 148 148 { 149 149 return (number) c; 150 150 } 151 151 152 number nAEQImPart(number c, const coeffs r)152 number nAEQImPart(number c, const coeffs) 153 153 { 154 154 return (number) c; 155 155 } 156 156 157 void nAEQWriteLong (number & a, const coeffs r)157 void nAEQWriteLong (number &, const coeffs) 158 158 { 159 159 return; 160 160 } 161 161 162 void nAEQWriteShort (number & a, const coeffs r)162 void nAEQWriteShort (number &, const coeffs) 163 163 { 164 164 return ; … … 166 166 167 167 168 const char * nAEQRead (const char * s, number *a,const coeffs r)168 const char * nAEQRead (const char *, number *, const coeffs) 169 169 { 170 170 return ""; 171 171 } 172 172 173 number nAEQNormalize (number a, number b,const coeffs r) // ?173 number nAEQNormalize (number a, number , const coeffs) // ? 174 174 { 175 175 return a; 176 176 } 177 177 178 BOOLEAN nAEQGreater (number a, number b, const coeffs r)178 BOOLEAN nAEQGreater (number a, number b, const coeffs) 179 179 { 180 180 Q_poly* f=reinterpret_cast<Q_poly*> (a); … … 184 184 } 185 185 186 BOOLEAN nAEQEqual (number a, number b, const coeffs r)186 BOOLEAN nAEQEqual (number a, number b, const coeffs) 187 187 { 188 188 Q_poly* f=reinterpret_cast<Q_poly*> (a); … … 192 192 } 193 193 194 BOOLEAN nAEQIsZero (number a, const coeffs r)194 BOOLEAN nAEQIsZero (number a, const coeffs) 195 195 { 196 196 Q_poly* f=reinterpret_cast<Q_poly*> (a); … … 199 199 } 200 200 201 BOOLEAN nAEQIsOne (number a, const coeffs r)201 BOOLEAN nAEQIsOne (number a, const coeffs) 202 202 { 203 203 Q_poly* f=reinterpret_cast<Q_poly*> (a); … … 206 206 } 207 207 208 BOOLEAN nAEQIsMOne (number a, const coeffs r)208 BOOLEAN nAEQIsMOne (number a, const coeffs) 209 209 { 210 210 Q_poly* f=reinterpret_cast<Q_poly*> (a); … … 219 219 } 220 220 221 void nAEQPower (number a, int i, number * result,const coeffs r)221 void nAEQPower (number, int, number *, const coeffs) 222 222 { 223 223 return; 224 224 } 225 225 226 number nAEQGetDenom (number & a, const coeffs r)226 number nAEQGetDenom (number &, const coeffs) 227 227 { 228 228 return (number) 1; 229 229 } 230 230 231 number nAEQGetNumerator (number &a, const coeffs r)231 number nAEQGetNumerator (number &a, const coeffs) 232 232 { 233 233 return a; 234 234 } 235 235 236 number nAEQGcd (number a, number b,const coeffs r)236 number nAEQGcd (number a, number b, const coeffs) 237 237 { 238 238 Q_poly* f=reinterpret_cast<Q_poly*> (a); … … 243 243 } 244 244 245 number nAEQLcm (number a, number b,const coeffs r)245 number nAEQLcm (number a, number b, const coeffs) 246 246 { 247 247 Q_poly* f=reinterpret_cast<Q_poly*> (a); … … 256 256 } 257 257 258 void nAEQDelete (number * a, const coeffs r)258 void nAEQDelete (number *, const coeffs) 259 259 { 260 260 return; … … 262 262 263 263 /* 264 number nAEQSetMap (number a, const coeffs r)264 number nAEQSetMap (number a, const coeffs) 265 265 { 266 266 return a; 267 267 } 268 268 */ 269 char* nAEQName (number a, const coeffs r)269 char* nAEQName (number, const coeffs) 270 270 { 271 271 char* c=new char; … … 275 275 } 276 276 277 void nAEQInpMult (number & a, number b,const coeffs r)277 void nAEQInpMult (number &, number, const coeffs) 278 278 { 279 279 return ; 280 280 } 281 281 282 void nAEQCoeffWrite (const coeffs r, BOOLEAN details)282 void nAEQCoeffWrite (const coeffs, BOOLEAN) 283 283 { 284 284 return; 285 285 } 286 286 287 BOOLEAN nAEQClearContent (number a,const coeffs r)287 BOOLEAN nAEQClearContent (number, const coeffs) 288 288 { 289 289 return FALSE; 290 290 } 291 291 292 BOOLEAN nAEQClearDenominators (number a,const coeffs r)292 BOOLEAN nAEQClearDenominators (number, const coeffs) 293 293 { 294 294 return FALSE; … … 300 300 301 301 302 BOOLEAN n_QAEInitChar(coeffs r,void *p) // vlt noch void* p hin 303 { 304 305 306 302 BOOLEAN n_QAEInitChar(coeffs r, void *) 303 { 307 304 r->ch=0; 308 305 r->cfKillChar=NULL; -
libpolys/coeffs/OPAEp.cc
r5d25c42 r2e2f8f 29 29 // DEFINITION DER FUNKTIONEN 30 30 31 number nAEpAdd(number a, number b, const coeffs r)31 number nAEpAdd(number a, number b, const coeffs) 32 32 { 33 33 p_poly* f=reinterpret_cast<p_poly*> (a); … … 39 39 } 40 40 41 number nAEpMult(number a, number b, const coeffs r)41 number nAEpMult(number a, number b, const coeffs) 42 42 { 43 43 p_poly* f=reinterpret_cast<p_poly*> (a); … … 49 49 } 50 50 51 number nAEpSub(number a, number b, const coeffs r)51 number nAEpSub(number a, number b, const coeffs) 52 52 { 53 53 p_poly* f=reinterpret_cast<p_poly*> (a); … … 60 60 61 61 62 number nAEpDiv(number a, number b, const coeffs r)62 number nAEpDiv(number a, number b, const coeffs) 63 63 { 64 64 p_poly* f=reinterpret_cast<p_poly*> (a); … … 72 72 73 73 74 number nAEpIntDiv(number a, number b, const coeffs r)74 number nAEpIntDiv(number a, number b, const coeffs) 75 75 { 76 76 … … 83 83 } 84 84 85 number nAEpIntMod(number a, number b,const coeffs r)85 number nAEpIntMod(number a, number, const coeffs) 86 86 { 87 87 return a; 88 88 } 89 89 90 number nAEpExactDiv(number a, number b, const coeffs r)90 number nAEpExactDiv(number a, number b, const coeffs) 91 91 { 92 92 p_poly* f=reinterpret_cast<p_poly*> (a); … … 101 101 102 102 103 number nAEpInit(long i, const coeffs r)103 number nAEpInit(long i, const coeffs) 104 104 { 105 105 int j=7; … … 112 112 } 113 113 114 number nAEpInitMPZ(mpz_t m, const coeffs r)114 number nAEpInitMPZ(mpz_t m, const coeffs) 115 115 { 116 116 int j=7; … … 122 122 } 123 123 124 int nAEpSize (number a, const coeffs r)124 int nAEpSize (number a, const coeffs) 125 125 { 126 126 p_poly* f=reinterpret_cast<p_poly*> (a); … … 128 128 } 129 129 130 int nAEpInt(number & a,const coeffs r)130 int nAEpInt(number &, const coeffs) 131 131 { 132 132 return 1; … … 134 134 135 135 136 number nAEpMPZ(number a, const coeffs r)136 number nAEpMPZ(number a, const coeffs) 137 137 { 138 138 return a; … … 140 140 141 141 142 number nAEpNeg(number c, const coeffs r)142 number nAEpNeg(number c, const coeffs) 143 143 { 144 144 p_poly* f=reinterpret_cast<p_poly*> (c); … … 149 149 } 150 150 151 number nAEpCopy(number c, const coeffs r)151 number nAEpCopy(number c, const coeffs) 152 152 { 153 153 return c; 154 154 } 155 155 156 number nAEpRePart(number c, const coeffs r)156 number nAEpRePart(number c, const coeffs) 157 157 { 158 158 return c; 159 159 } 160 160 161 number nAEpImPart(number c, const coeffs r)161 number nAEpImPart(number c, const coeffs) 162 162 { 163 163 return c; 164 164 } 165 165 166 void nAEpWriteLong (number &a, const coeffs r)166 void nAEpWriteLong (number &a, const coeffs) 167 167 { 168 168 p_poly* f=reinterpret_cast <p_poly*>(a); … … 172 172 } 173 173 174 void nAEpWriteShort (number &a, const coeffs r)174 void nAEpWriteShort (number &a, const coeffs) 175 175 { 176 176 p_poly* f=reinterpret_cast <p_poly*>(a); … … 180 180 181 181 182 const char * nAEpRead (const char * s, number *a,const coeffs r)182 const char * nAEpRead (const char *, number *a, const coeffs) 183 183 { 184 184 p_poly& f=reinterpret_cast <p_poly&>(a); … … 191 191 } 192 192 193 number nAEpNormalize (number a, number b,const coeffs r) // ?193 number nAEpNormalize (number a, number, const coeffs) // ? 194 194 { 195 195 return a; 196 196 } 197 197 198 BOOLEAN nAEpGreater (number a, number b, const coeffs r)198 BOOLEAN nAEpGreater (number a, number b, const coeffs) 199 199 { 200 200 p_poly* f=reinterpret_cast<p_poly*> (a); … … 204 204 } 205 205 206 BOOLEAN nAEpEqual (number a, number b, const coeffs r)206 BOOLEAN nAEpEqual (number a, number b, const coeffs) 207 207 { 208 208 p_poly* f=reinterpret_cast<p_poly*> (a); … … 212 212 } 213 213 214 BOOLEAN nAEpIsZero (number a, const coeffs r)214 BOOLEAN nAEpIsZero (number a, const coeffs) 215 215 { 216 216 p_poly* f=reinterpret_cast<p_poly*> (a); … … 219 219 } 220 220 221 BOOLEAN nAEpIsOne (number a, const coeffs r)221 BOOLEAN nAEpIsOne (number a, const coeffs) 222 222 { 223 223 p_poly* f=reinterpret_cast<p_poly*> (a); … … 226 226 } 227 227 228 BOOLEAN nAEpIsMOne (number a, const coeffs r)228 BOOLEAN nAEpIsMOne (number a, const coeffs r) 229 229 { 230 230 number b=nAEpNeg(a,r); … … 240 240 } 241 241 242 void nAEpPower (number a, int i, number * result,const coeffs r)242 void nAEpPower (number, int, number *, const coeffs) 243 243 { 244 244 return; 245 245 } 246 246 247 number nAEpGetDenom (number & a, const coeffs r)247 number nAEpGetDenom (number &, const coeffs) 248 248 { 249 249 return (number) 1; 250 250 } 251 251 252 number nAEpGetNumerator (number &a, const coeffs r)252 number nAEpGetNumerator (number &a, const coeffs) 253 253 { 254 254 return a; 255 255 } 256 256 257 number nAEpGcd (number a, number b,const coeffs r)257 number nAEpGcd (number a, number b, const coeffs) 258 258 { 259 259 p_poly* f=reinterpret_cast<p_poly*> (a); … … 264 264 } 265 265 266 number nAEpLcm (number a, number b,const coeffs r)266 number nAEpLcm (number a, number b, const coeffs) 267 267 { 268 268 p_poly* f=reinterpret_cast<p_poly*> (a); … … 277 277 } 278 278 279 void nAEpDelete (number * a, const coeffs r)279 void nAEpDelete (number *, const coeffs) 280 280 { 281 281 return; … … 283 283 284 284 /* 285 number nAEpSetMap (number a, const coeffs r)285 number nAEpSetMap (number a, const coeffs) 286 286 { 287 287 return a; 288 288 } 289 289 */ 290 char* nAEpName (number a, const coeffs r)290 char* nAEpName (number, const coeffs) 291 291 { 292 292 char* c=new char; 293 293 *c='c'; 294 294 295 return c; ;296 } 297 298 void nAEpInpMult (number &a, number b, const coeffs r)295 return c; 296 } 297 298 void nAEpInpMult (number &a, number b, const coeffs) 299 299 { 300 300 p_poly* f=reinterpret_cast<p_poly*> (a); … … 305 305 } 306 306 307 void nAEpCoeffWrite (const coeffs r, BOOLEAN details)307 void nAEpCoeffWrite (const coeffs, BOOLEAN) 308 308 { 309 309 return; 310 310 } 311 311 312 BOOLEAN nAEpClearContent (number a,const coeffs r)312 BOOLEAN nAEpClearContent (number, const coeffs) 313 313 { 314 314 return FALSE; 315 315 } 316 316 317 BOOLEAN nAEpClearDenominators (number a,const coeffs r)317 BOOLEAN nAEpClearDenominators (number, const coeffs) 318 318 { 319 319 return FALSE; … … 325 325 326 326 327 BOOLEAN n_pAEInitChar(coeffs r, void *p) // vlt noch void* p hin327 BOOLEAN n_pAEInitChar(coeffs r, void *p) 328 328 { 329 329 //Charakteristik abgreifen! -
libpolys/coeffs/longrat.cc
r5d25c42 r2e2f8f 2827 2827 } 2828 2828 2829 static char* nlCoeffString(const coeffs r)2829 static char* nlCoeffString(const coeffs) 2830 2830 { 2831 2831 return omStrDup("0"); -
libpolys/coeffs/rintegers.cc
r5d25c42 r2e2f8f 383 383 } 384 384 385 static char* nrzCoeffString(const coeffs r)385 static char* nrzCoeffString(const coeffs) 386 386 { 387 387 return omStrDup("integer");
Note: See TracChangeset
for help on using the changeset viewer.