summaryrefslogtreecommitdiff
path: root/Master/texmf/asymptote/math.asy
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf/asymptote/math.asy')
-rw-r--r--Master/texmf/asymptote/math.asy4
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)