Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
projekter committed May 8, 2024
1 parent a6e1d80 commit f9337ff
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/subs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,9 @@ function fillmap!(
if vars[j].kind == REAL_PART
vals[j] = value
elseif vars[j].kind != IMAG_PART
error("Found complex variable with substitution of real part - not implemented")
error(
"Found complex variable with substitution of real part - not implemented",
)
end
else
@assert(s.first.kind == IMAG_PART)
Expand All @@ -63,7 +65,9 @@ function fillmap!(
if vars[j].kind == IMAG_PART
vals[j] = value
elseif vars[j].kind != REAL_PART
error("Found complex variable with substitution of imaginary part - not implemented")
error(
"Found complex variable with substitution of imaginary part - not implemented",
)
end
end
end
Expand Down

0 comments on commit f9337ff

Please sign in to comment.