summaryrefslogtreecommitdiff
path: root/graphics/asymptote/examples/slope.asy
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/asymptote/examples/slope.asy')
-rw-r--r--graphics/asymptote/examples/slope.asy2
1 files changed, 1 insertions, 1 deletions
diff --git a/graphics/asymptote/examples/slope.asy b/graphics/asymptote/examples/slope.asy
index 832f8c13fc..46cf11be43 100644
--- a/graphics/asymptote/examples/slope.asy
+++ b/graphics/asymptote/examples/slope.asy
@@ -37,7 +37,7 @@ real order=3;
for(int i=0; i < n-1; ++i) {
real dt=(b-a)*lambda^(n-i);
- Solution S=integrate(Y0,L,F,a,b,dt,dynamic=false,0.0002,0.0004,ERK3BS,verbose=false);
+ Solution S=integrate(Y0,G,a,b,dt,dynamic=false,0.0002,0.0004,RK3BS,verbose=false);
real maxnorm=0;
Solution E=integrate(Y0,G,a,b,1e-2*dt,dynamic=false,0.0002,0.0004,RK5);