GitXplorerGitXplorer
j

functional-differential-geometry

public
45 stars
9 forks
0 issues

Commits

List of commits on branch master.
Unverified
c3c2eedb378a1610353d99e7f0063993520b8b47

don't need quotes

jjtauber committed 11 years ago
Unverified
96227a4457a765d979504a068172279cf5b6a455

switched to shields.io for badges

jjtauber committed 11 years ago
Unverified
82519aea4c0d34836c22d4e6e72f5115a4de6143

add 3.4 to travis

jjtauber committed 11 years ago
Unverified
474495946ba4de3ca07a619449b9547c3e84e67c

added flake8 to CI and exclude run_doctests.py file itself from coverage

jjtauber committed 11 years ago
Unverified
f5dbe2d10f4bc9904fdafb70ac51c160df08d476

handling any Expr not just Sym

jjtauber committed 11 years ago
Unverified
47c0ad315fd821e120e6b8bc2d684854fad7363e

fixed missing space in error message

jjtauber committed 11 years ago

README

The README file for this repository.

Functional Differential Geometry

Working my way through Sussman and Wisdom's Functional Differential Geometry and implementing it in Python.

The modules should work in both Python 2 and 3.

Build Status Coverage Status

tuples.py

Implements the datastructures in the Tuples section of Appendix B. I actually really wish Python tuples worked this way :-)

tuples.rst explains the module.

functions.py

Implements the functional capabilities described in the Functions section of Appendix B. I guess I wish Python functions worked this way too :-)

functions.rst explains the module.

symbolic.py

Implements some of the symbolic value functionality needed for Appendix B.

symbolic.rst explains the module.

simplification.py

Implements some basic simplification of expressions needed for the results of differentiation to be more readable.

simplification.rst explains the module.

differentiation.py

Very basic symbolic differentiation (still in progress).

differentiation.rst explains the module.