From 54a0eaad17a87b871101d9682cc47392bda08b51 Mon Sep 17 00:00:00 2001 From: jClugstor Date: Tue, 2 Sep 2025 19:47:03 -0400 Subject: [PATCH] don't copy tuples --- lib/SciMLJacobianOperators/src/SciMLJacobianOperators.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/SciMLJacobianOperators/src/SciMLJacobianOperators.jl b/lib/SciMLJacobianOperators/src/SciMLJacobianOperators.jl index 833ce59e8..16655c9b8 100644 --- a/lib/SciMLJacobianOperators/src/SciMLJacobianOperators.jl +++ b/lib/SciMLJacobianOperators/src/SciMLJacobianOperators.jl @@ -409,7 +409,7 @@ function Base.copy(J::JacobianOperator) J.mode, J.jvp_op, J.vjp_op, - copy(J.size), + J.size, J.input_cache === nothing ? nothing : copy(J.input_cache), J.output_cache === nothing ? nohting : copy(J.output_cache) )