Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
grahamknockillaree authored Oct 28, 2023
1 parent 5e947cd commit 6629a29
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tutorial/tutex/4.10.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
gap> file:=HapFile("data1V2X.pdb");;
gap> DisplayPDBfile(file);
7 changes: 7 additions & 0 deletions tutorial/tutex/4.11.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
gap> r:=5;;
gap> K:=ReadPDBfileAsPureCubicalComplex(file,r);;
gap> K:=ContractedComplex(K);;
gap> K!.properties;
[ [ "dimension", 3 ], [ "arraySize", [ 184, 186, 294 ] ] ]

gap> Display(K);
5 changes: 5 additions & 0 deletions tutorial/tutex/4.12.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
gap> F:=ThickeningFiltration(K,15);;
gap> F:=FilteredPureCubicalComplexToCubicalComplex(F);;
gap> F:=FilteredCubicalComplexToFilteredRegularCWComplex(F);;
gap> P:=PersistentBettiNumbersAlt(F,1);;
gap> BarCodeCompactDisplay(P);
10 changes: 10 additions & 0 deletions tutorial/tutex/4.13.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
gap> C:=PureComplexComplement(K);;
gap> C:=ContractedComplex(C);;
gap> G:=FundamentalGroup(C);;
gap> GeneratorsOfGroup(G);
[ f1, f2 ]
gap> RelatorsOfFpGroup(G);
[ f2*f1^-1*f2^-1*f1^-1*f2*f1 ]

gap> AlexanderPolynomial(G);
x_1^2-x_1+1

0 comments on commit 6629a29

Please sign in to comment.