products
quiverlab.hochschild.products ¶
Plan 35 -- the HH product surface: structure-constant tables for the cup product, the cap module action, the Gerstenhaber bracket, and the induced Connes differential, as frozen result objects with one canonical block serialization (consumed identically by hpc/spec.py and docs/gui/runner.py).
Constants are ALWAYS exact strings at the boundary (str(entry)): ints mod p
on the GF(p) routes, Domain reprs on the CS route. No floats can appear (the
AST gate scans this file).
BVOperator ¶
BVOperator(top, hh_dims, matrices, ranks, hypothesis, nakayama, basis, window, references, bracket_check=None, derived_bracket=None, basis_classes=None, chain_basis=None, differentials=None)
The Batalin-Vilkovisky operator Delta: HH^n -> HH^{n-1} (Plan 54).
Delta lowers cohomological degree by 1 and is the adjoint of the (twisted)
Connes B under the Frobenius perfect pairing. matrices[n] is Delta_n, a
dim HH^{n-1} x dim HH^n matrix of exact strings (rows indexed by the
OUTPUT degree HH^{n-1}, mirroring ConnesB); the family starts at n = 1
(Delta_0 = 0 by degree: there is no HH^{-1}). Constants live in the recorded
basis (Plan 35 basis-dependence doctrine).
Source code in src/quiverlab/hochschild/products.py
122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 | |
ConnesB ¶
ConnesB(top, hh_dims, matrices, ranks, engine, references, basis_classes=None, chain_basis=None, differentials=None)
Induced Connes differentials B: HH_n -> HH_{n+1} for 0 <= n < top.
Source code in src/quiverlab/hochschild/products.py
80 81 82 83 84 85 86 87 88 89 90 91 92 | |
HHProducts ¶
HHProducts(kind, top, tables, engine, basis, window, references, basis_classes=None, chain_basis=None, differentials=None)
A family of product tables up to top. kind in {"cup","cap","bracket"}.
Source code in src/quiverlab/hochschild/products.py
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 | |
connes_b_tables ¶
connes_b_tables(A, top, max_cells=4000000)
Induced Connes differentials B: HH_n -> HH_{n+1}, 0 <= n < top.
Returns a ConnesB whose matrices[n] is the hh_{n+1} x hh_n matrix of the induced B in the class bases (rows indexed by HH_{n+1}); B^2 = 0 holds at the induced level because bB + Bb = 0 makes B descend to homology and B^2 vanishes on chains. GF(p): the fast (b,B) engine; any other exact Domain: the generic bar (b,B) mixed complex (max_cells guards the blow-up).
Source code in src/quiverlab/hochschild/products.py
397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 | |
gfp_product_tables ¶
gfp_product_tables(A, kind, top, max_cells)
The GF(p) bar-route table family: tt_calculus structure constants on the bar HH basis. A must be over a prime field (the caller routes).
Source code in src/quiverlab/hochschild/products.py
178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 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 231 232 233 234 235 236 237 | |