mirror of
https://github.com/JuliaFEM/JuliaFEM.jl.git
synced 2026-08-16 18:44:05 +00:00
6b24ed9d76
Changed Point from 'mutable struct' to 'struct'. The Dict for fields remains a reference type, so field updates via setindex! and update! still work correctly. This change improves type stability and enables better compiler optimizations. Benefits: - Better compiler optimizations (immutable types) - Type stability improvements - Stack allocation when possible - No breaking changes (Dict fields still mutable) Tests: All 157 tests passing