Changeset d3b0a3 in git
- Timestamp:
- Feb 1, 2017, 12:47:14 PM (6 years ago)
- Branches:
- (u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
- 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
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Tst/Short/gitfan.tst
rde96278 rd3b0a3 2 2 tst_init(); 3 3 LIB "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 4 22 ring R = 0,T(1..10),wp(1,1,1,1,1,1,1,1,1,1); 5 23 ideal J = … … 56 74 list Sigma = GITfanParallelSymmetric(OClist, Q, mov, actionOnOrbitconeIndices); 57 75 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); 95 list actionOnOrbitconeIndicesForGenerators = groupActionOnHashes(Asigmagens,OC); 96 string elementInTermsOfGenerators = 97 "(x2^-1*x1^-1)^3*x1^-1"; 98 evaluateProduct(actionOnOrbitconeIndicesForGenerators, elementInTermsOfGenerators); 99 58 100 tst_status(1);$
Note: See TracChangeset
for help on using the changeset viewer.