Changeset d3b0a3 in git


Ignore:
Timestamp:
Feb 1, 2017, 12:47:14 PM (7 years ago)
Author:
Janko Boehm <boehm@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
1381ff1450a5fd15c955cc5228ed66ccb449294d
Parents:
de96278c020b8a3fb467b672cee2bd7527925e0f
git-author:
Janko Boehm <boehm@mathematik.uni-kl.de>2017-02-01 12:47:14+01:00
git-committer:
Yue Ren <ren@mathematik.uni-kl.de>2017-06-08 18:10:26+02:00
Message:
More tests
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Tst/Short/gitfan.tst

    rde96278 rd3b0a3  
    22tst_init();
    33LIB "gitfan.lib";
     4
     5  intmat Q[5][10] =
     6    1, 1, 1, 1, 0, 0, 0, 0, 0, 0,
     7    1, 0, 0, 0, 1, 1, 1, 0, 0, 0,
     8    0, 1, 1, 0, 0, 0, -1, 1, 0, 0,
     9    0, 1, 0, 1, 0, -1, 0, 0, 1, 0,
     10    0, 0, 1, 1, -1, 0, 0, 0, 0, 1;
     11  cone mov = movingCone(Q);
     12  mov;
     13  rays(mov);
     14
     15
     16  intmat Q[3][4] =
     17    1,0,1,0,
     18    0,1,0,1,
     19    0,0,1,1;
     20  GKZfan(Q);
     21
    422  ring R = 0,T(1..10),wp(1,1,1,1,1,1,1,1,1,1);
    523  ideal J =
     
    5674  list Sigma = GITfanParallelSymmetric(OClist, Q, mov, actionOnOrbitconeIndices);
    5775  Sigma;
     76
     77  ring R = 0,T(1..10),wp(1,1,1,1,1,1,1,1,1,1);
     78  ideal J =
     79    T(5)*T(10)-T(6)*T(9)+T(7)*T(8),
     80    T(1)*T(9)-T(2)*T(7)+T(4)*T(5),
     81    T(1)*T(8)-T(2)*T(6)+T(3)*T(5),
     82    T(1)*T(10)-T(3)*T(7)+T(4)*T(6),
     83    T(2)*T(10)-T(3)*T(9)+T(4)*T(8);
     84  intmat Q[5][10] =
     85    1, 1, 1, 1, 0, 0, 0, 0, 0, 0,
     86    1, 0, 0, 0, 1, 1, 1, 0, 0, 0,
     87    0, 1, 1, 0, 0, 0, -1, 1, 0, 0,
     88    0, 1, 0, 1, 0, -1, 0, 0, 1, 0,
     89    0, 0, 1, 1, -1, 0, 0, 0, 0, 1;
     90  list AF= afaces(J);
     91  list OC = orbitCones(AF,Q);
     92  list generatorsG = permutationFromIntvec(intvec( 1, 3, 2, 4, 6, 5, 7, 8, 10, 9 )),
     93                     permutationFromIntvec(intvec( 5, 7, 1, 6, 9, 2, 8, 4, 10, 3 ));
     94  list Asigmagens = groupActionOnQImage(generatorsG,Q);
     95list actionOnOrbitconeIndicesForGenerators = groupActionOnHashes(Asigmagens,OC);
     96string elementInTermsOfGenerators =
     97"(x2^-1*x1^-1)^3*x1^-1";
     98evaluateProduct(actionOnOrbitconeIndicesForGenerators, elementInTermsOfGenerators);
     99
    58100tst_status(1);$
Note: See TracChangeset for help on using the changeset viewer.