Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
Revert to UniqueRepresentation for topological manifolds
Browse files Browse the repository at this point in the history
  • Loading branch information
egourgoulhon committed Dec 2, 2015
2 parents 8400a23 + 0b08b11 commit d3e5d4d
Show file tree
Hide file tree
Showing 11 changed files with 5,447 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/doc/en/reference/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ Geometry and Topology
* :doc:`Combinatorial Geometry <geometry/index>`
* :doc:`Cell Complexes and their Homology <homology/index>`
* :doc:`Differential Forms <tensor/index>`
* :doc:`Manifolds <manifolds/index>`
* :doc:`Parametrized Surfaces <riemannian_geometry/index>`

Number Theory, Algebraic Geometry
Expand Down
1 change: 1 addition & 0 deletions src/doc/en/reference/manifolds/conf.py
18 changes: 18 additions & 0 deletions src/doc/en/reference/manifolds/index.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
Manifolds
=========

This is the Sage implementation of manifolds resulting from the
`SageManifolds project <http://sagemanifolds.obspm.fr/>`_.
This section describes only the "manifold" part of SageManifolds;
the pure algebraic part is described in the section
:ref:`tensors-on-free-modules`.

More documentation (in particular example worksheets) can be found
`here <http://sagemanifolds.obspm.fr/documentation.html>`_.

.. toctree::
:maxdepth: 2

manifold

.. include:: ../footer.txt
13 changes: 13 additions & 0 deletions src/doc/en/reference/manifolds/manifold.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
Topological manifolds
=====================

.. toctree::
:maxdepth: 2

sage/manifolds/manifold

sage/manifolds/point

sage/manifolds/subset

sage/manifolds/chart
2 changes: 2 additions & 0 deletions src/sage/all.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,8 @@

from sage.game_theory.all import *

from sage.manifolds.all import *

# Lazily import notebook functions and interacts (#15335)
lazy_import('sagenb.notebook.notebook_object', 'notebook')
lazy_import('sagenb.notebook.notebook_object', 'inotebook')
Expand Down
1 change: 1 addition & 0 deletions src/sage/manifolds/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Empty file
2 changes: 2 additions & 0 deletions src/sage/manifolds/all.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
from sage.misc.lazy_import import lazy_import
lazy_import('sage.manifolds.manifold', 'Manifold')
Loading

0 comments on commit d3e5d4d

Please sign in to comment.