Changeset 5e069f in git
- Timestamp:
- Feb 25, 2015, 12:47:34 PM (9 years ago)
- Branches:
- (u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
- Children:
- af797868fc826da050aa2f31b071fcaada51ed74
- Parents:
- 69cd391441f29da7fc34ef4078408760a69a290a
- Location:
- libpolys
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
libpolys/misc/Makefile.am
r69cd39 r5e069f 3 3 AM_CPPFLAGS = -I${top_srcdir} -I${top_srcdir}/.. -I${top_builddir} -I${top_builddir}/.. 4 4 5 noinst_LTLIBRARIES = libmisc.la libintvec.la5 noinst_LTLIBRARIES = libmisc.la 6 6 ##### libmiscdir = $(libdir)/singular 7 8 libmisc_la_LIBADD = libintvec.la9 7 10 8 ## libmisc_la_LDFLAGS = -release ${PACKAGE_VERSION} 11 9 12 libmisc_la_SOURCES = int64vec.cc options.c sirandom.c 10 libmisc_la_SOURCES = int64vec.cc options.c sirandom.c intvec.cc 13 11 14 12 libmisc_la_includedir = $(includedir)/singular/misc … … 18 16 nodist_libmisc_la_SOURCES = auxiliary.h 19 17 20 libintvec_la_SOURCES = intvec.cc21 22 -
libpolys/polys/monomials/ring.cc
r69cd39 r5e069f 3350 3350 BOOLEAN rOrd_is_MixedDegree_Ordering(ring r) 3351 3351 { 3352 int i , k;3352 int i; 3353 3353 poly p=p_One(r); 3354 3354 p_SetExp(p,1,1,r);p_Setm(p,r); -
libpolys/polys/weight0.c
r69cd39 r5e069f 301 301 { 302 302 int n, s0, s1, s2, *xopt; 303 double one,fx, fopt, wx;303 double fx, fopt, wx; 304 304 305 305 n = rvar; … … 307 307 fopt = *fk * (double)0.999999999999; 308 308 wx = wPrWeight(x, n); 309 one = (double)1.0;310 309 loop 311 310 { … … 389 388 390 389 390 #if 0 /*currently unused*/ 391 391 static void wSimple(int *x, int n) 392 392 { … … 463 463 wGcd(x, n); 464 464 } 465 465 #endif 466 466 467 467 void wNorm(int *degw, int *lpol, int npol, double *rel)
Note: See TracChangeset
for help on using the changeset viewer.