diff options
author | Karl Berry <karl@freefriends.org> | 2010-07-05 00:24:45 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2010-07-05 00:24:45 +0000 |
commit | 1fff2e715d8cf25331a3aab6d1324328cbdcf557 (patch) | |
tree | 50cc2d03dbc732b8bf70e46310a43e4bd53d55d6 /Master/texmf/asymptote/math.asy | |
parent | a06e5c017823a9a6673af33599d3f9fe34b1b7e8 (diff) |
asymptote 2.00
git-svn-id: svn://tug.org/texlive/trunk@19235 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf/asymptote/math.asy')
-rw-r--r-- | Master/texmf/asymptote/math.asy | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Master/texmf/asymptote/math.asy b/Master/texmf/asymptote/math.asy index a684307e5a5..0dfddff7f2f 100644 --- a/Master/texmf/asymptote/math.asy +++ b/Master/texmf/asymptote/math.asy @@ -167,11 +167,11 @@ int unique(string[] a, string x) { } bool lexorder(pair a, pair b) { - return a.x < b.x || (a.x == b.x && a.y <= b.y); + return a.x < b.x || (a.x == b.x && a.y < b.y); } bool lexorder(triple a, triple b) { - return a.x < b.x || (a.x == b.x && (a.y < b.y || (a.y == b.y && a.z <= b.z))); + return a.x < b.x || (a.x == b.x && (a.y < b.y || (a.y == b.y && a.z < b.z))); } real[] zero(int n) |