summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/asymptote/ode.asy
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2018-04-06 15:21:10 +0000
committerKarl Berry <karl@freefriends.org>2018-04-06 15:21:10 +0000
commitf43901a2e69137a91d953d854976bf91dc5905a5 (patch)
treef68c911b3d3e61ea5d343b2144c07e3f82d0b2b5 /Master/texmf-dist/asymptote/ode.asy
parent02985bccb92d6c159bbcd4621c92edb0dedb263b (diff)
asymptote 2.43
git-svn-id: svn://tug.org/texlive/trunk@47325 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/asymptote/ode.asy')
-rw-r--r--Master/texmf-dist/asymptote/ode.asy3
1 files changed, 2 insertions, 1 deletions
diff --git a/Master/texmf-dist/asymptote/ode.asy b/Master/texmf-dist/asymptote/ode.asy
index 51941844fc4..7104a8d1532 100644
--- a/Master/texmf-dist/asymptote/ode.asy
+++ b/Master/texmf-dist/asymptote/ode.asy
@@ -264,7 +264,7 @@ solution integrate(real y, real c=0, real f(real t, real y), real a, real b=a,
{
solution S;
S.t=new real[] {a};
- S.y=new real[]{y};
+ S.y=new real[] {y};
if(h == 0) {
if(b == a) return S;
@@ -323,6 +323,7 @@ solution integrate(real y, real c=0, real f(real t, real y), real a, real b=a,
} else {
t += h;
y=y0+highOrder;
+ S.t.push(t);
S.y.push(y);
}
}