We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79f40dd commit adb0dd4Copy full SHA for adb0dd4
src/Blocks/analysis_points.jl
@@ -143,15 +143,6 @@ function expand_analysis_points(sys)
143
sys
144
end
145
146
-#=
147
-function ModelingToolkit.namespace_expr(ap::AnalysisPoint, sys, n = nameof(sys)) where {T}
148
- in = ap.in === nothing ? ap.in : ModelingToolkit.renamespace(n, ap.in)
149
- out = ap.out === nothing ? ap.out : ModelingToolkit.renamespace(n, ap.out)
150
- name = Symbol(n, :_, ap.name)
151
- AnalysisPoint(in, out, name)
152
-end
153
-=#
154
-
155
function Base.:(==)(ap1::AnalysisPoint, ap2::AnalysisPoint)
156
return ap1.in == ap2.in && ap1.out == ap2.out # Name doesn't really matter if inputs and outputs are the same
157
0 commit comments