Skip to content

Commit e23dff8

Browse files
authored
more command examples
1 parent 649a72f commit e23dff8

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

README.md

+21
Original file line numberDiff line numberDiff line change
@@ -35,3 +35,24 @@ The homology computed by CHomP in SageMath is not guaranteed to provide minimal
3535
cc_gens = extract_generators(cc_hom)
3636
cc_min_gens = minimal_generators(cc_gens, steps=10, pruning=True)
3737
cc_min_gens
38+
39+
## transferPart.py
40+
This script parses a chain complex definition, computes homology, and applies the transfer algorithm to induce coproducts in homology from the defined coproducts. It will attempt to compute up to the 4-ary coproduct in homology, as long as the 3-ary coproduct does not vanish.
41+
42+
### Simple Link Example
43+
44+
python transferPart.py data/linked.tex
45+
46+
### User-Defined Homology
47+
Since homology definition can influence the symbolic simplification (e.g., you may get something more readable), an option to provide user-specified homology groups (and the representative for each class) is available. The `-hg` flag can be used to designate a homology group definition.
48+
49+
Here is an example using a differential graded coalgebra:
50+
51+
python transferPart.py -hg data/hom_dgc.py data/dgc.tex
52+
53+
## Research Applications
54+
A central motivation for this work was to explore the application of the transfer algorithm to Brunnian link complements. Specialized scripts that compute transfer for Borromean rings are included.
55+
56+
python transferBR.py -hg data/hom_borromean.py data/borromean.tex
57+
58+
More details on this can found in the thesis document, available in the **Releases** section of the repository.

0 commit comments

Comments
 (0)