simplicial_connectivity
AbstractSimplicialComplexConnectivity
¶
Bases: BaseTransform
Source code in mantra/representations/simplicial_connectivity.py
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 | |
__metaclass__ = ABCMeta
class-attribute
instance-attribute
¶
Base class for connectivity transforms.
Parent class for implementing a transform that adds a
connectivity matrix for simplices. This transform takes a Data object with a triangulation
field and represents this triangulation by the canonical
representation of it's neighborhood relationships in the
PyG edge-index format.
generate_matrix(simplex_trie, rank, max_rank)
abstractmethod
¶
Generate a connectivity matrix.
Parameters¶
simplex_trie: SimplexTrie The datastructure contating the simplicial complex. rank: int The rank r for which to generate the connectivity relationship. max_rank: int Maximum rank of the simplex trie.
Returns¶
Torch.tensor (torch.sparse.coo)
Source code in mantra/representations/simplicial_connectivity.py
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 | |
skeleton(simplex_trie, rank)
¶
Compute the r-skeleton of a simplex.
Parameters¶
simplex_trie: SimplexTrie The datastructure containing a simplex. rank: int Rank r of the skeleton. Returns: List[Simplex]
Source code in mantra/representations/simplicial_connectivity.py
50 51 52 53 54 55 56 57 58 59 60 61 62 63 | |
AddSimplexTrie
¶
Bases: BaseTransform
Add simplex trie to object.
Takes in a Data object and computes a SimplexTrie for it.
Then it adds it to it's storage to save up on computation
of connectivity matrices.
Source code in mantra/representations/simplicial_connectivity.py
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | |
AdjacencySimplicialComplex
¶
Bases: AbstractSimplicialComplexConnectivity
Add adjacencies of a simplicial complex.
Source code in mantra/representations/simplicial_connectivity.py
233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 | |
CoadjacencySimplicialComplex
¶
Bases: AbstractSimplicialComplexConnectivity
Add coadjacencies of a simplicial complex.
Notes¶
This constructs matrices that relate two simplices $\sigma, $\tau$ if there is a $\lambda$ whose rank is lower than both $\sigma,\tau$ and $\lambda \subset \sigma \wedge \lambda \subset \tau$.
Example¶
triangulations = [ [0, 1, 2], [1, 2, 3] ] data = Data(triangulation = triangulation) transform = CoadjacencySimplicialComplex(signed=False) data = transform(data)
Then the tensors look like¶
data.coadjacency_0 = torch.zeros(4,4) data.coadjacency_1 = [ # (0, 1), (0, 2), (1, 2), (1, 3), (2, 3) [0, 1, 1, 1, 1] [1, 0, 1, 0, 1] [1, 1, 0, 1, 1] [1, 0, 1, 0, 1] [0, 1, 1, 1, 0] ] data.coadjacency_2 = [ # (0, 1, 2), (1, 2, 3) [0, 1] [1, 0] ]
Source code in mantra/representations/simplicial_connectivity.py
256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 | |
DownLaplacianSimplicialComplex
¶
Bases: AbstractSimplicialComplexConnectivity
Add Down Laplacian of a simplicial complex.
Source code in mantra/representations/simplicial_connectivity.py
204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 | |
IncidenceSimplicialComplex
¶
Bases: AbstractSimplicialComplexConnectivity
Add incidences of a simplicial complex.
Source code in mantra/representations/simplicial_connectivity.py
129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 | |
UpLaplacianSimplicialComplex
¶
Bases: AbstractSimplicialComplexConnectivity
Add Up Laplacian of a simplicial complex.
Source code in mantra/representations/simplicial_connectivity.py
174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 | |