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

Commit 21b3968

Browse files
committed
Basics of diff. manifolds: solve merge conflict with Sage 7.1.beta1
2 parents f00be00 + 0e04631 commit 21b3968

14 files changed

+3673
-25
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
Differentiable Manifolds
2+
========================
3+
4+
.. toctree::
5+
:maxdepth: 2
6+
7+
sage/manifolds/differentiable/manifold
8+
9+
sage/manifolds/differentiable/chart
10+
11+
diff_scalarfield
12+
13+
diff_map
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
Differentiable Maps
2+
===================
3+
4+
.. toctree::
5+
:maxdepth: 2
6+
7+
sage/manifolds/differentiable/manifold_homset
8+
9+
sage/manifolds/differentiable/diff_map
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
Scalar Fields
2+
=============
3+
4+
.. toctree::
5+
:maxdepth: 2
6+
7+
sage/manifolds/differentiable/scalarfield_algebra
8+
9+
sage/manifolds/differentiable/scalarfield

src/doc/en/reference/manifolds/index.rst

+2
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ More documentation (in particular example worksheets) can be found
1515

1616
manifold
1717

18+
diff_manifold
19+
1820
sage/manifolds/utilities
1921

2022
.. include:: ../footer.txt

src/sage/manifolds/all.py

+1
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
lazy_import('sage.manifolds.manifold', 'Manifold')
33
lazy_import('sage.manifolds.utilities', 'nice_derivatives')
44
lazy_import('sage.manifolds.utilities', 'omit_function_args')
5+
lazy_import('sage.manifolds.utilities', 'set_axes_labels')
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Empty file

0 commit comments

Comments
 (0)