File: 1.80b.txt

package info (click to toggle)
gap-hap 1.70%2Bds-1
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 56,612 kB
  • sloc: xml: 16,139; sh: 216; javascript: 155; makefile: 126; ansic: 47; perl: 36
file content (13 lines) | stat: -rw-r--r-- 452 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
gap> B:=[ [ 0, 1, -1, -1, 1, 0 ],
>         [ 1, 0, 1, 1, 0, 0 ],
>         [ 0, 0, 1, 0, 0, 0 ],
>         [ 0, 0, 0, 1, -1, 0 ],
>         [ 0, 0, 1, 1, 0, 0 ],
>         [ 0, 0, 1, 1, 0, 1 ] ];;
gap> Display(IntersectionForm(M,B));
[ [   0,   1,   0,   0,   0,   0 ],
  [  -1,   0,   0,   0,   0,   0 ],
  [   0,   0,   0,   0,   1,   0 ],
  [   0,   0,   0,   0,   0,   1 ],
  [   0,   0,  -1,   0,   0,   0 ],
  [   0,   0,   0,  -1,   0,   0 ] ]