refactor(src): remove caches.jl

src/assemblers/caches.jl | 21 ---------------------  1 file changed, 21 deletions(-)
This commit is contained in:
Jukka Aho
2026-05-09 16:30:29 +03:00
parent 6db7cf8104
commit a2ab84b8cc
-21
View File
@@ -1,21 +0,0 @@
# This file is a part of JuliaFEM.
# License is MIT: see https://github.com/JuliaFEM/JuliaFEM.jl/blob/master/LICENSE.md
"""
Cache structures for zero-allocation assembly.
All assemblers use pre-allocated caches containing:
- Global system matrices and vectors (K, f)
- Element/node-level workspace
- Sparse matrix structures
Caches are created once per problem and reused across multiple assembly
calls (e.g., in nonlinear iterations or time stepping).
"""
using SparseArrays
using Tensors
include("coo_cache.jl")
include("csc_cache.jl")
# include("nodal_cache.jl") # TODO: File doesn't exist yet