File tree Expand file tree Collapse file tree 3 files changed +13
-4
lines changed Expand file tree Collapse file tree 3 files changed +13
-4
lines changed Original file line number Diff line number Diff line change @@ -2,10 +2,10 @@ version: 2
22
33# Build documentation in the docs/ directory with Sphinx
44sphinx :
5- configuration : docs /conf.py
5+ configuration : doc /conf.py
66
77conda :
8- file : doc/environment.yml
8+ environment : doc/environment.yml
99
1010python :
1111 version : 3.7
Original file line number Diff line number Diff line change 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+
413What's new in version 0.7
514=========================
615*Released November 29, 2016 *
Original file line number Diff line number Diff line change 6767class 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
459459def 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.
You can’t perform that action at this time.
0 commit comments