-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
197 additions
and
139 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
# Configuration file for the Sphinx documentation builder. | ||
# | ||
# This file only contains a selection of the most common options. For a full | ||
# list see the documentation: | ||
# https://www.sphinx-doc.org/en/master/usage/configuration.html | ||
|
||
# -- Path setup -------------------------------------------------------------- | ||
|
||
# If extensions (or modules to document with autodoc) are in another directory, | ||
# add these directories to sys.path here. If the directory is relative to the | ||
# documentation root, use os.path.abspath to make it absolute, like shown here. | ||
|
||
#from sage.env import SAGE_DOC_SRC, SAGE_DOC, SAGE_SRC | ||
# | ||
#try: | ||
# import sage.all | ||
#except ImportError: | ||
# raise RuntimeError("to build the documentation you need to be inside a Sage shell (run first the command 'sage -sh' in a shell") | ||
|
||
import os, sys | ||
sys.path.insert(0, os.path.abspath('/Users/pbelmans/Documents/Project/hodge-diamond-cutter')) | ||
|
||
import diamond | ||
|
||
# -- Project information ----------------------------------------------------- | ||
|
||
project = 'Hodge diamond cutter' | ||
copyright = '2021, Pieter Belmans' | ||
author = 'Pieter Belmans' | ||
# The full version, including alpha/beta/rc tags | ||
release = 'v1.0' | ||
|
||
# -- General configuration --------------------------------------------------- | ||
|
||
# Add any Sphinx extension module names here, as strings. They can be | ||
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom | ||
# ones. | ||
extensions = [ | ||
'sphinx.ext.autodoc', | ||
'sphinx.ext.mathjax', | ||
'sphinx.ext.todo', | ||
'sphinx.ext.viewcode', | ||
] | ||
|
||
mathjax_config = { | ||
"extensionsr": ["tex2jax.js"], | ||
"jax": ['input/TeX','output/HTML-CSS'], | ||
"tex2jax": { | ||
"inlineMath": [['$','$']], | ||
"displayMath": [ ['$$','$$'], ["\\[","\\]"] ], | ||
}, | ||
} | ||
|
||
# Add any paths that contain templates here, relative to this directory. | ||
templates_path = ['_templates'] | ||
|
||
# List of patterns, relative to source directory, that match files and | ||
# directories to ignore when looking for source files. | ||
# This pattern also affects html_static_path and html_extra_path. | ||
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] | ||
|
||
|
||
# -- Options for HTML output ------------------------------------------------- | ||
|
||
# The theme to use for HTML and HTML Help pages. See the documentation for | ||
# a list of builtin themes. | ||
# | ||
html_theme = 'furo' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,116 @@ | ||
Documentation for the Hodge diamond cutter | ||
========================================== | ||
|
||
.. toctree:: | ||
:maxdepth: 2 | ||
:caption: Contents: | ||
|
||
.. automodule:: diamond | ||
:no-members: | ||
|
||
Hodge diamonds | ||
============== | ||
|
||
.. autoclass:: diamond.HodgeDiamond | ||
:members: | ||
:special-members: | ||
:member-order: bysource | ||
|
||
Hochschild homology | ||
=================== | ||
|
||
.. autoclass:: diamond.HochschildHomology | ||
:members: | ||
:member-order: bysource | ||
|
||
Constructions | ||
============= | ||
|
||
Elementary constructions | ||
------------------------ | ||
|
||
.. autofunction:: diamond.zero | ||
.. autofunction:: diamond.point | ||
.. autofunction:: diamond.lefschetz | ||
.. autofunction:: diamond.Pn | ||
.. autofunction:: diamond.hypersurface | ||
.. autofunction:: diamond.weighted_hypersurface | ||
.. autofunction:: diamond.cyclic_cover | ||
.. autofunction:: diamond.complete_intersection | ||
|
||
Curves and moduli spaces of sheaves on them | ||
------------------------------------------- | ||
|
||
.. autofunction:: diamond.curve | ||
.. autofunction:: diamond.symmetric_power | ||
.. autofunction:: diamond.jacobian | ||
.. autofunction:: diamond.moduli_vector_bundles | ||
.. autofunction:: diamond.seshadris_desingularisation | ||
.. autofunction:: diamond.moduli_parabolic_vector_bundles_rank_two | ||
.. autofunction:: diamond.quot_scheme_curve | ||
|
||
|
||
Surfaces and moduli spaces of sheaves on them | ||
--------------------------------------------- | ||
|
||
.. autofunction:: diamond.surface | ||
.. autofunction:: diamond.ruled | ||
.. autofunction:: diamond.K3 | ||
.. autofunction:: diamond.enriques | ||
.. autofunction:: diamond.hilbn | ||
.. autofunction:: diamond.nestedhilbn | ||
|
||
|
||
Abelian varieties and related objects | ||
------------------------------------- | ||
|
||
.. autofunction:: diamond.abelian | ||
.. autofunction:: diamond.kummer_resolution | ||
|
||
|
||
Fano varieties | ||
-------------- | ||
These are Hodge diamonds of Fano varieties in the sense that their anticanonical bundle is ample. | ||
|
||
The term "Fano variety" can also mean a variety parametrising linear subspaces on another variety. Some of these are Fano in the first sense, others are not (always). See e.g. :func:`diamond.fano_variety_lines_cubic`. | ||
|
||
.. autofunction:: diamond.fano_threefold | ||
.. autofunction:: diamond.gushel_mukai | ||
.. autofunction:: diamond.fano_variety_intersection_quadrics_even | ||
.. autofunction:: diamond.fano_variety_intersection_quadrics_odd | ||
|
||
|
||
Homogeneous varieties and closely related constructions | ||
------------------------------------------------------- | ||
These are also all Fano varieties, but they are grouped together because of their similar origin. | ||
|
||
.. autofunction:: diamond.partial_flag_variety | ||
.. autofunction:: diamond.generalised_grassmannian | ||
.. autofunction:: diamond.grassmannian | ||
.. autofunction:: diamond.orthogonal_grassmannian | ||
.. autofunction:: diamond.symplectic_grassmannian | ||
.. autofunction:: diamond.lagrangian_grassmannian | ||
.. autofunction:: diamond.horospherical | ||
.. autofunction:: diamond.odd_symplectic_grassmannian | ||
|
||
|
||
Moduli spaces attached to quivers | ||
--------------------------------- | ||
|
||
.. autofunction:: diamond.quiver_moduli | ||
|
||
|
||
Hyperkähler varieties | ||
--------------------- | ||
|
||
.. autofunction:: diamond.K3n | ||
.. autofunction:: diamond.generalised_kummer | ||
.. autofunction:: diamond.ogrady6 | ||
.. autofunction:: diamond.ogrady10 | ||
|
||
|
||
Other | ||
----- | ||
|
||
.. autofunction:: diamond.Mzeronbar | ||
.. autofunction:: diamond.fano_variety_lines_cubic |