pysheaf
Python 3.6 Sheaf theoretic toolbox
This library provides tools for manipulating sheaves of pseudometric spaces on partially ordered sets. The primarly class is a Sheaf
, which subclasses NetworkX.DiGraph
; the idea is that the DiGraph
specifies the Hasse diagram for the partially ordered set.
Most of the details you need to get started are in the pysheaf
module. Start there first. For specific sheaves that havew linear maps as restrictions, you might consider looking at dataTools
. Finally, there are several detailed examples to explore.
General usage instructions
First (usually on paper!) lay out the cell complex that will serve as the base for your sheaf. Give each cell a unique label.
Determine all of the stalks over each cell, and the restriction maps. Restriction maps can be a mixture of
numpy
matrices or arbitrary single-input Python function objects.Construct a
Sheaf
instance and add each of your cells asCell
instances with theSheaf.AddCell
method. Make sure to use your unique label for eachCell
, because that is how PySheaf identifies them! Once you've done that, create each restriction as aCoface
instance and add it to the sheaf using theSheaf.AddCoface
method. TheSheaf.AddCoface
method will connect the listedCell
s based on their labels.Cell
s andCoface
s can be added later if you want, and they can be added in any order provided anyCoface
refers toCell
s that already exist.Install some data into the sheaf by way of an
Assignment
to some of theCell
s.Analyze the sheaf and its data: a. You can compute consistency radius with
Sheaf.ComputeConsistencyRadius()
b. You can improve the consistency radius by extending or altering the values of the assignment withSheaf.FuseAssignment()
. This will only alter Cells whoseCell.mOptimizationCell
attribute isTrue
. You can also change the optimization algorithm if you want. c. You can find all star open sets whose local consistency is less than a desired bound usingSheaf.CellIndexesLessThanConsistencyThreshold()
.
1""" 2# Python 3.6 Sheaf theoretic toolbox 3 4This library provides tools for manipulating sheaves of pseudometric spaces on partially ordered sets. The primarly class is a `Sheaf`, which subclasses `NetworkX.DiGraph`; the idea is that the `DiGraph` specifies the Hasse diagram for the partially ordered set. 5 6Most of the details you need to get started are in the `pysheaf` module. Start there first. For specific sheaves that havew linear maps as restrictions, you might consider looking at `dataTools`. Finally, there are several detailed examples to explore. 7 8## General usage instructions 9 101. First (usually on paper!) lay out the cell complex that will serve as the base for your sheaf. *Give each cell a unique label.* 11 122. Determine all of the stalks over each cell, and the restriction maps. Restriction maps can be a mixture of `numpy` matrices or arbitrary single-input Python function objects. 13 143. Construct a `Sheaf` instance and add each of your cells as `Cell` instances with the `Sheaf.AddCell` method. Make sure to use your unique label for each `Cell`, because that is how PySheaf identifies them! Once you've done that, create each restriction as a `Coface` instance and add it to the sheaf using the `Sheaf.AddCoface` method. The `Sheaf.AddCoface` method will connect the listed `Cell`s based on their labels. `Cell`s and `Coface`s can be added later if you want, and they can be added in any order provided any `Coface` refers to `Cell`s that already exist. 15 164. Install some data into the sheaf by way of an `Assignment` to some of the `Cell`s. 17 185. Analyze the sheaf and its data: 19 a. You can compute consistency radius with `Sheaf.ComputeConsistencyRadius()` 20 b. You can improve the consistency radius by extending or altering the values of the assignment with `Sheaf.FuseAssignment()`. This will only alter Cells whose `Cell.mOptimizationCell` attribute is `True`. You can also change the optimization algorithm if you want. 21 c. You can find all star open sets whose local consistency is less than a desired bound using `Sheaf.CellIndexesLessThanConsistencyThreshold()`. 22 23""" 24 25from .pysheaf import *