-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
copy
for BigInt
, BigFloat
and Rational
Fixes #163
- Loading branch information
Showing
6 changed files
with
75 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# Copyright (c) 2023 MutableArithmetics.jl contributors | ||
# | ||
# This Source Code Form is subject to the terms of the Mozilla Public License, | ||
# v.2.0. If a copy of the MPL was not distributed with this file, You can obtain | ||
# one at http://mozilla.org/MPL/2.0/. | ||
|
||
@testset "copy: $T" for T ∈ (Float64, BigFloat, Int, BigInt, Rational{Int}, Rational{BigInt}) | ||
@test MA.operate!!(copy, T(2)) == 2 | ||
@test MA.operate_to!!(T(3), copy, T(2)) == 2 | ||
if MA.mutability(T, copy, T) == MA.IsMutable() | ||
@testset "mutable" begin | ||
@testset "correctness" begin | ||
x = T(2) | ||
y = T(3) | ||
@test MA.operate!(copy, x) === x == 2 | ||
@test MA.operate_to!(y, copy, x) === y == 2 | ||
end | ||
@testset "alloc" begin | ||
f = let x = T(2) | ||
() -> MA.operate!(copy, x) | ||
end | ||
g = let x = T(2), y = T(3) | ||
() -> MA.operate_to!(y, copy, x) | ||
end | ||
alloc_test(f, 0) | ||
alloc_test(g, 0) | ||
end | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters