Skip to content

Commit

Permalink
Change format (#87)
Browse files Browse the repository at this point in the history
  • Loading branch information
huiyuxie authored Dec 8, 2024
1 parent 89aed4b commit 6956b3c
Show file tree
Hide file tree
Showing 3 changed files with 69 additions and 154 deletions.
2 changes: 1 addition & 1 deletion .JuliaFormatter.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
style = "sciml"

# Additional Options
margin = 100
margin = 150
yas_style_nesting = true
align_struct_field = true
8 changes: 2 additions & 6 deletions src/solvers/dg_2d.jl
Original file line number Diff line number Diff line change
Expand Up @@ -935,13 +935,9 @@ function mortar_flux_copy_to_kernel!(surface_flux_values, tmp_surface_flux_value

@inbounds begin
for ii in axes(reverse_upper, 2) # i.e., ` for ii in axes(reverse_lower, 2)`
tmp_surface_flux_values[i, j, direction, large_element] += fstar_secondary_upper[i,
ii,
k] *
tmp_surface_flux_values[i, j, direction, large_element] += fstar_secondary_upper[i, ii, k] *
reverse_upper[j, ii] +
fstar_secondary_lower[i,
ii,
k] *
fstar_secondary_lower[i, ii, k] *
reverse_lower[j, ii]
end

Expand Down
Loading

0 comments on commit 6956b3c

Please sign in to comment.