Changeset 3df2f4 in git


Ignore:
Timestamp:
Sep 28, 2016, 12:05:26 PM (8 years ago)
Author:
Yue <ren@…>
Branches:
(u'fieker-DuVal', '117eb8c30fc9e991c4decca4832b1d19036c4c65')(u'spielwiese', 'b4f17ed1d25f93d46dbe29e4b499baecc2fd51bb')
Children:
cfeb3499515cf7e422a18f220b30c809e89e607c
Parents:
7b313943fefd5a1b4547e38e6fbce96141ec8cda
Message:
fix: polymakeInterface.lib various refedines
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/LIB/polymakeInterface.lib

    r7b31394 r3df2f4  
    477477  insertCone(F1,c1);
    478478  isSmooth(F1);
    479   fan F2 = emptyFan(2);
     479  fan F2 = emptyFan(3);
    480480  insertCone(F2,c2);
    481481  isSmooth(F2);
    482   intmat Mq[3][3]=
     482  intmat Mp[3][3]=
    483483    1,-2,-3,
    484484    1,1,0,
    485485    1,0,1;
     486  polytope p = polytopeViaPoints(Mp);
     487  isSmooth(p);
     488  fan F = normalFan(p);
     489  isSmooth(F);
     490  intmat Mq[4][3]=
     491    1,2,0,
     492    1,0,1,
     493    1,2,1,
     494    1,0,0;
    486495  polytope q = polytopeViaPoints(Mq);
    487   fan F = normalFan(q);
    488   isSmooth(F);
    489   intmat Np[4][3]=
    490     1,2,0,
    491     1,0,1,
    492     1,2,1,
    493     1,0,0;
    494   polytope p = polytopeViaPoints(Np);
    495   isSmooth(p);
    496   intmat Nq[3][3]=
    497     1,-2,-3,
    498     1,1,0,
    499     1,0,1;
    500   polytope q = polytopeViaPoints(Nq);
    501496  isSmooth(q);
    502497}
Note: See TracChangeset for help on using the changeset viewer.