Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ext/StateSelectionDeepDiffsExt.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module StateSelectionDeepDiffsExt

using DeepDiffs
using BipartiteGraphs: Label, BipartiteAdjacencyList, unassigned, HighlightInt
using BipartiteGraphs: Label, BipartiteAdjacencyList, unassigned, HighlightInt, Unassigned
using StateSelection: SystemStructure,
MatchedSystemStructure,
SystemStructurePrintMatrix
Expand Down
4 changes: 2 additions & 2 deletions lib/ModelingToolkitTearing/src/stateselection_interface.jl
Original file line number Diff line number Diff line change
Expand Up @@ -268,8 +268,8 @@ function StateSelection.find_eq_solvables!(state::TearingState, ieq, to_rm = Int
conservative && continue
elseif conservative && abs(a) > 1
continue
else
coeffs === nothing || push!(coeffs, a)
elseif coeffs !== nothing && (!iszero(a) || !may_be_zero)
push!(coeffs, a)
end

if !iszero(a)
Expand Down
94 changes: 94 additions & 0 deletions lib/ModelingToolkitTearing/src/utils.jl
Original file line number Diff line number Diff line change
Expand Up @@ -82,3 +82,97 @@ macro union_split_var(annotated_var::Expr, block::Expr)

return esc(expr)
end

"""
$TYPEDSIGNATURES

Debugging tool useful for comparing two `SystemStructure`s. Return a copy of `structure` with
variables reordered according to `oldtonewvar` and equations according to `oldtoneweq`.
"""
function permute(structure::SystemStructure, oldtonewvar::Vector{Int}, oldtoneweq::Vector{Int})
graph = BipartiteGraph(nsrcs(structure.graph), ndsts(structure.graph))
for e in 𝑠vertices(structure.graph)
for v in 𝑠neighbors(structure.graph, e)
add_edge!(graph, oldtoneweq[e], oldtonewvar[v])
end
end
solvable_graph = BipartiteGraph(nsrcs(structure.solvable_graph), ndsts(structure.solvable_graph))
for e in 𝑠vertices(structure.solvable_graph)
for v in 𝑠neighbors(structure.solvable_graph, e)
add_edge!(solvable_graph, oldtoneweq[e], oldtonewvar[v])
end
end
var_to_diff = StateSelection.DiffGraph(ndsts(graph))
for i in 𝑑vertices(structure.graph)
if structure.var_to_diff[i] isa Int
var_to_diff[oldtonewvar[i]] = oldtonewvar[structure.var_to_diff[i]]
end
end
eq_to_diff = StateSelection.DiffGraph(nsrcs(graph))
for i in 𝑠vertices(structure.graph)
if structure.eq_to_diff[i] isa Int
eq_to_diff[oldtoneweq[i]] = oldtoneweq[structure.eq_to_diff[i]]
end
end

var_types = similar(structure.var_types)
sps = similar(structure.state_priorities)
for i in 𝑑vertices(structure.graph)
var_types[oldtonewvar[i]] = structure.var_types[i]
sps[oldtonewvar[i]] = structure.state_priorities[i]
end

return SystemStructure(var_to_diff, eq_to_diff, graph, solvable_graph, var_types, sps, structure.only_discrete)
end

"""
$TYPEDSIGNATURES

Debugging tool useful for comparing two `TearingState`s. Return a copy of `ts` with
variables reordered according to `oldtonewvar` and equations according to `oldtoneweq`.
"""
function permute(ts::TearingState, oldtonewvar::Vector{Int}, oldtoneweq::Vector{Int})
structure = permute(ts.structure, oldtonewvar, oldtoneweq)
fullvars = similar(ts.fullvars)
always_present = similar(ts.always_present)
for i in eachindex(fullvars)
fullvars[oldtonewvar[i]] = ts.fullvars[i]
always_present[oldtonewvar[i]] = ts.always_present[i]
end
original_eqs = similar(ts.original_eqs)
eqs_source = similar(ts.eqs_source)
eqs = collect(equations(ts))
for i in eachindex(original_eqs)
original_eqs[oldtoneweq[i]] = ts.original_eqs[i]
eqs_source[oldtoneweq[i]] = ts.eqs_source[i]
eqs[oldtoneweq[i]] = equations(ts)[i]
end

sys = ts.sys
@set! sys.eqs = eqs
@set! sys.unknowns = fullvars
return TearingState(sys, fullvars, structure, Equation[], ts.param_derivative_map, ts.no_deriv_params, original_eqs, ts.additional_observed, always_present, ts.statemachines, eqs_source)
end

"""
$TYPEDSIGNATURES

Debugging tool useful for comparing two `SparseMatrixCLIL`s. Return a copy of `mm` with
variables reordered according to `oldtonewvar` and equations according to `oldtoneweq`.
"""
function permute(mm::StateSelection.SparseMatrixCLIL{S, T}, oldtonewvar::Vector{Int}, oldtoneweq::Vector{Int}) where {S, T}
nzrows = copy(mm.nzrows)
rowcols = copy(mm.row_cols)
rowvals = copy(mm.row_vals)
for i in eachindex(nzrows)
nzrows[i] = oldtoneweq[nzrows[i]]
for j in eachindex(rowcols[i])
rowcols[i][j] = oldtonewvar[rowcols[i][j]]
end
perm = sortperm(rowcols[i])
rowcols[i] = rowcols[i][perm]
rowvals[i] = rowvals[i][perm]
end

return StateSelection.SparseMatrixCLIL{S, T}(mm.nparentrows, mm.ncols, nzrows, rowcols, rowvals)
end
17 changes: 17 additions & 0 deletions lib/ModelingToolkitTearing/test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ using Graphs
import StateSelection
using ModelingToolkit: t_nounits as t, D_nounits as D
import SymbolicUtils as SU
using Setfield
using ForwardDiff

@testset "`InferredDiscrete` validation" begin
Expand Down Expand Up @@ -138,3 +139,19 @@ end
prob.f.f.f_iip(du, prob.u0, prob.p, t)
end
end

@testset "`find_eq_solvables!` with `may_be_zero = true` doesn't push 0 elements to `coeffs`" begin
@variables x y z
@named sys = System([x + y + z ~ 0])
ts = TearingState(sys)
# Artificially remove symbolic incidence
@set! ts.sys.eqs = [0 ~ -x]
ts.structure.solvable_graph = BipartiteGraph(1, 3)
to_rm = Int[]
coeffs = Int[]
StateSelection.find_eq_solvables!(ts, 1, to_rm, coeffs)
@test issetequal(ts.fullvars[to_rm], [y, z])
# Previously, this would have zeros corresponding to `y` and `z`, and yet the incidence for those
# variables is removed from `ts.structure.graph`. This would cause incorrect values in `linear_subsys_adjmat!`
@test coeffs == [-1]
end
Loading