Skip to content

Commit 71f4d81

Browse files
committed
Fix a couple of citations I missed.
Also try to get readthedocs working.
1 parent 51654a4 commit 71f4d81

File tree

3 files changed

+13
-4
lines changed

3 files changed

+13
-4
lines changed

.readthedocs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ version: 2
22

33
# Build documentation in the docs/ directory with Sphinx
44
sphinx:
5-
configuration: docs/conf.py
5+
configuration: doc/conf.py
66

77
conda:
8-
file: doc/environment.yml
8+
environment: doc/environment.yml
99

1010
python:
1111
version: 3.7

doc/changes.rst

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11

22
.. _changes:
33

4+
Changes since release 0.7
5+
=========================
6+
7+
- Comppute E-polynomial for RK methods
8+
- Now possible to integrate complex solutions
9+
- Many new specific ODE methods added
10+
- Fixed some bugs in generation of trees and order conditions of very high order
11+
- Added some new example notebooks
12+
413
What's new in version 0.7
514
=========================
615
*Released November 29, 2016*

nodepy/twostep_runge_kutta_method.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
class TwoStepRungeKuttaMethod(GeneralLinearMethod):
6868
#=====================================================
6969
r""" General class for Two-step Runge-Kutta Methods
70-
The representation uses the form and partly the notation of [Jackiewicz1995]_,
70+
The representation uses the form and partly the notation of :cite:`jackiewicz1995`,
7171
equation (1.3).
7272
7373
`\begin{align*}
@@ -458,7 +458,7 @@ def TSRKeta_str(tree):
458458

459459
def loadTSRK(which='All'):
460460
r"""
461-
Load two particular TSRK methods (From [Jackiewicz1995]_).
461+
Load two particular TSRK methods (From :cite:`jackiewicz1995`).
462462
463463
The method of order five satisfies the order conditions only
464464
to four or five digits of accuracy.

0 commit comments

Comments
 (0)