refactor(domains): Remove Vec{3} conversion in assemble_v2

- Changed 'ξ = Vec{3}(ip.ξ)' to 'ξ = ip.ξ' in compute_element_stiffness!
- No conversion needed since ip.ξ is now already Vec{3}
This commit is contained in:
Jukka Aho
2025-11-20 17:56:48 +02:00
parent 531d5cc208
commit 4766cfe65e
+1 -1
View File
@@ -496,7 +496,7 @@ function compute_element_stiffness!(
for k in 1:N, l in 1:N
for ip in ips
ξ = Vec{3}(ip.ξ)
ξ = ip.ξ
w = ip.weight
dN_dξ = get_basis_derivatives(topology, basis, ξ)