diff options
Diffstat (limited to 'Master/texmf-dist/asymptote/math.asy')
-rw-r--r-- | Master/texmf-dist/asymptote/math.asy | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Master/texmf-dist/asymptote/math.asy b/Master/texmf-dist/asymptote/math.asy index 69863634210..47044a75df1 100644 --- a/Master/texmf-dist/asymptote/math.asy +++ b/Master/texmf-dist/asymptote/math.asy @@ -175,7 +175,7 @@ int[][] segment(bool[] b) int[][] S=segmentlimits(b); return sequence(new int[](int i) { return sequence(S[i][0],S[i][1]); - },S[0].length); + },S.length); } // If the sorted array a does not contain x, insert it sequentially, |