File tree Expand file tree Collapse file tree 1 file changed +0
-11
lines changed Expand file tree Collapse file tree 1 file changed +0
-11
lines changed Original file line number Diff line number Diff line change @@ -334,26 +334,15 @@ end
334
334
# less than `b`, they are considered sort of equal.
335
335
_cmp_coefficient (a, b) = 0
336
336
337
- <<<<<< < HEAD
338
337
function Base. cmp (t1:: AbstractTermLike , t2:: AbstractTermLike )
339
- ====== =
340
- function Base. cmp (
341
- t1:: AbstractTermLike ,
342
- t2:: AbstractTermLike ,
343
- )
344
- >>>>>> > e84a75b (Remove unnecessary compare implementations)
345
338
Δ = cmp (monomial (t1), monomial (t2))
346
339
if iszero (Δ)
347
340
return _cmp_coefficient (coefficient (t1), coefficient (t2))
348
341
end
349
342
return Δ
350
343
end
351
344
352
- <<<<<< < HEAD
353
- Base. isless (t1:: AbstractTermLike , t2:: AbstractTermLike ) = compare (t1, t2) < 0
354
- ====== =
355
345
Base. isless (t1:: AbstractTermLike , t2:: AbstractTermLike ) = cmp (t1, t2) < 0
356
- >>>>>> > e84a75b (Remove unnecessary compare implementations)
357
346
358
347
"""
359
348
struct ExponentsIterator{M}(
You can’t perform that action at this time.
0 commit comments