Rebuild docs with Python 3 and Sphinx 3.0.2.

This commit is contained in:
Simon Forman
2020-04-28 15:37:49 -07:00
parent 176e427116
commit 7f6fcf6e09
150 changed files with 51415 additions and 41305 deletions
+5 -1
View File
@@ -1,4 +1,3 @@
Symbolic Evaluation with SymPy
==============================
@@ -609,6 +608,7 @@ of Stack-Based
Languages <http://www.complang.tuwien.ac.at/projects/rafts.html>`__ he
goes a lot further for Forth.)
"A Transformation Based Approach to Semantics-Directed Code Generation"
-----------------------------------------------------------------------
@@ -1261,6 +1261,7 @@ quoted
eval(hylomorphism([])(5)(lambda n: n == 0)(lambda n: (n-1, n-1)))(lambda a: lambda b: [a] + b)
.. code:: ipython2
hylomorphism(0)([1, 2, 3])(lambda n: not n)(lambda n: (n[0], n[1:]))
@@ -1273,6 +1274,9 @@ quoted
eval(hylomorphism([])([1, 2, 3])(lambda n: not n)(lambda n: (n[1:], n[1:])))(lambda a: lambda b: [a] + b)
.. code:: ipython2
def hylomorphism(c):