From c116a459d5f2641992c1949b5ddbd20c8463a3b4 Mon Sep 17 00:00:00 2001 From: Oscar Dowson Date: Mon, 18 Nov 2024 09:05:48 +1300 Subject: [PATCH] Update --- test/big.jl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/big.jl b/test/big.jl index 71d72b6..3784003 100644 --- a/test/big.jl +++ b/test/big.jl @@ -45,9 +45,9 @@ end @testset "$T" for T in [BigInt, BigFloat, Rational{BigInt}] MA.Test.int_test(T) @testset "Allocation" begin - allocation_test(+, T, MA.add!!, MA.add_to!!, T <: Rational ? 192 : 0) + allocation_test(+, T, MA.add!!, MA.add_to!!, T <: Rational ? 224 : 0) allocation_test(-, T, MA.sub!!, MA.sub_to!!, T <: Rational ? 168 : 0) - allocation_test(*, T, MA.mul!!, MA.mul_to!!, T <: Rational ? 240 : 0) + allocation_test(*, T, MA.mul!!, MA.mul_to!!, T <: Rational ? 280 : 0) add_sub_mul_test(MA.add_mul, T) add_sub_mul_test(MA.sub_mul, T) if T <: Rational # https://github.com/jump-dev/MutableArithmetics.jl/issues/167 @@ -56,7 +56,7 @@ end T, MA.add!!, MA.add_to!!, - 192, + 224, a = T(1 // 2), b = T(3 // 2), c = T(5 // 2),