Skip to content

Commit

Permalink
refactor: remove mutable from ODEPhi struct
Browse files Browse the repository at this point in the history
  • Loading branch information
sathvikbhagavan authored Jun 15, 2024
1 parent ecc6a40 commit c15eb96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ode_solve.jl
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ end
Internal struct, used for representing the ODE solution as a neural network in a form that respects boundary conditions, i.e.
`phi(t) = u0 + t*NN(t)`.
"""
mutable struct ODEPhi{C, T, U, S}
struct ODEPhi{C, T, U, S}
chain::C
t0::T
u0::U
Expand Down

0 comments on commit c15eb96

Please sign in to comment.