Skip to content

Commit e6ce778

Browse files
committed
Default allow_symbolic to true
1 parent ae0da21 commit e6ce778

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/structural_transformation/utils.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ end
158158
### Structural and symbolic utilities
159159
###
160160

161-
function find_eq_solvables!(state::TearingState, ieq; may_be_zero=false, allow_symbolic=false)
161+
function find_eq_solvables!(state::TearingState, ieq; may_be_zero=false, allow_symbolic=true)
162162
fullvars = state.fullvars
163163
@unpack graph, solvable_graph = state.structure
164164
eq = equations(state)[ieq]
@@ -191,7 +191,7 @@ function find_eq_solvables!(state::TearingState, ieq; may_be_zero=false, allow_s
191191
end
192192
end
193193

194-
function find_solvables!(state::TearingState; allow_symbolic=false)
194+
function find_solvables!(state::TearingState; allow_symbolic=true)
195195
@assert state.structure.solvable_graph === nothing
196196
eqs = equations(state)
197197
graph = state.structure.graph

0 commit comments

Comments
 (0)