Changeset e5618c in git
- Timestamp:
- Jan 20, 2015, 1:35:52 PM (9 years ago)
- Branches:
- (u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
- Children:
- 08749da88db85345212e694597d458072913a9c5
- Parents:
- bf83d38c96216c127968a607729c0b2aa4b88985
- git-author:
- Yue Ren <ren@mathematik.uni-kl.de>2015-01-20 13:35:52+01:00
- git-committer:
- Yue Ren <ren@mathematik.uni-kl.de>2015-02-06 13:47:05+01:00
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/dyn_modules/gfanlib/ppinitialReduction.cc
rbf83d3 re5618c 197 197 198 198 #ifndef NDEBUG 199 BOOLEAN p ppReduce(leftv res, leftv args)199 BOOLEAN pReduceDebug(leftv res, leftv args) 200 200 { 201 201 leftv u = args; … … 444 444 for (int l=k+1; l<n; l++) 445 445 if (ppreduceInitially(&I->m[k], I->m[l], r)) 446 pReduce(I->m[ j],p,r);446 pReduce(I->m[k],p,r); 447 447 448 448 /*** -
Singular/dyn_modules/gfanlib/ppinitialReduction.h
rbf83d3 re5618c 14 14 15 15 #ifndef NDEBUG 16 BOOLEAN pReduceDebug(leftv res, leftv args); 16 17 BOOLEAN reduceInitiallyDebug(leftv res, leftv args); 17 18 BOOLEAN ptNormalize(leftv res, leftv args); -
Singular/dyn_modules/gfanlib/tropical.cc
rbf83d3 re5618c 239 239 #ifndef NDEBUG 240 240 // p->iiAddCproc("","initial0",FALSE,initial0); 241 // p->iiAddCproc("","pppReduce",FALSE,pppReduce);241 p->iiAddCproc("","pReduceDebug",FALSE,pReduceDebug); 242 242 // p->iiAddCproc("","ppreduceInitially0",FALSE,ppreduceInitially0); 243 243 // p->iiAddCproc("","ppreduceInitially1",FALSE,ppreduceInitially1); -
Singular/dyn_modules/gfanlib/tropicalCurves.cc
rbf83d3 re5618c 218 218 std::set<gfan::ZCone> C = tropicalStar(I,r,u,currentStrategy); 219 219 gfan::ZFan* zf = toFanStar(C); 220 std::cout << zf->toString();220 // std::cout << zf->toString(); 221 221 delete zf; 222 222 gfan::ZMatrix raysOfC(0,u.size()); -
Singular/dyn_modules/gfanlib/tropicalStrategy.cc
rbf83d3 re5618c 9 9 // for various commands in dim(ideal I, ring r): 10 10 #include <kernel/ideals.h> 11 #include <kernel/ GBEngine/stairc.h>11 #include <kernel/combinatorics/stairc.h> 12 12 #include <kernel/GBEngine/kstd1.h> 13 13 #include <Singular/ipshell.h> // for isPrime(int i) -
Singular/dyn_modules/gfanlib/tropicalVariety.cc
rbf83d3 re5618c 79 79 tropicalStrategy currentStrategy(I,p,currRing); 80 80 ideal startingIdeal = currentStrategy.getStartingIdeal(); 81 idealstartingRing = currentStrategy.getStartingRing();81 ring startingRing = currentStrategy.getStartingRing(); 82 82 poly gStart = startingIdeal->m[0]; 83 83 std::set<gfan::ZCone> maxCones = tropicalVariety(gStart,startingRing,currentStrategy); -
gfanlib/gfanlib_q.h
rbf83d3 re5618c 160 160 return mpq_sgn(value); 161 161 } 162 static Rational gcd(Rational const &a, Rational const &b, Rational &s, Rational &t)162 static Rational gcd(Rational const &a, Rational const /*&b*/, Rational /*&s*/, Rational /*&t*/) 163 163 { 164 164 /* mpz_t r; -
libpolys/coeffs/coeffs.h
rbf83d3 re5618c 608 608 /// return the quotient of 'a' and 'b', i.e., a/b; 609 609 /// raise an error if 'b' is not invertible in r 610 <<<<<<< HEAD611 =======612 610 /// exception in Z: raises an error if 'a' is not divisible by 'b' 613 >>>>>>> fix: wrong comment on errors in n_Div for Z614 611 static FORCE_INLINE number n_Div(number a, number b, const coeffs r) 615 612 { STATISTIC(n_Div); assume(r != NULL); assume(r->cfDiv!=NULL); return r->cfDiv(a,b,r); } -
m4/gfanlib-check.m4
rbf83d3 re5618c 57 57 LIBS=$BACKUP_LIBS 58 58 59 <<<<<<< HEAD60 59 if test "x$PASSED_ALL_TESTS_FOR_GFANLIB" = x1; then 61 60 AC_MSG_RESULT([yes]) … … 68 67 fi 69 68 fi 70 <<<<<<< HEAD71 =======72 =======73 69 AC_MSG_RESULT(no) 74 70 75 71 AC_SUBST(CDDGMPLDFLAGS) 76 >>>>>>> fix: missing -lcddgmp flag when linking libgfan.so77 >>>>>>> fix: missing -lcddgmp flag when linking libgfan.so78 72 else 79 73 AC_MSG_RESULT(no)
Note: See TracChangeset
for help on using the changeset viewer.