@@ -85,115 +85,6 @@ include("prob/test.jl")
85
85
include (" util/obbt.jl" )
86
86
include (" util/flow_limit_cuts.jl" )
87
87
88
-
89
- # function deprecation warnings
90
- # can be removed in a breaking release after 09/01/2022
91
- function run_model (args... ; kwargs... )
92
- @warn (" the function run_model has been replaced with solve_model" , maxlog= 1 )
93
- solve_model (args... ; kwargs... )
94
- end
95
-
96
- function run_pf (args... ; kwargs... )
97
- @warn (" the function run_pf has been replaced with solve_pf" , maxlog= 1 )
98
- solve_pf (args... ; kwargs... )
99
- end
100
- function run_ac_pf (args... ; kwargs... )
101
- @warn (" the function run_ac_pf has been replaced with solve_ac_pf" , maxlog= 1 )
102
- solve_ac_pf (args... ; kwargs... )
103
- end
104
- function run_dc_pf (args... ; kwargs... )
105
- @warn (" the function run_dc_pf has been replaced with solve_dc_pf" , maxlog= 1 )
106
- solve_dc_pf (args... ; kwargs... )
107
- end
108
- function run_pf_bf (args... ; kwargs... )
109
- @warn (" the function run_pf_bf has been replaced with solve_pf_bf" , maxlog= 1 )
110
- solve_pf_bf (args... ; kwargs... )
111
- end
112
- function run_pf_iv (args... ; kwargs... )
113
- @warn (" the function run_pf_iv has been replaced with solve_pf_iv" , maxlog= 1 )
114
- solve_pf_iv (args... ; kwargs... )
115
- end
116
-
117
-
118
- function run_opf (args... ; kwargs... )
119
- @warn (" the function run_opf has been replaced with solve_opf" , maxlog= 1 )
120
- solve_opf (args... ; kwargs... )
121
- end
122
- function run_ac_opf (args... ; kwargs... )
123
- @warn (" the function run_ac_opf has been replaced with solve_ac_opf" , maxlog= 1 )
124
- solve_ac_opf (args... ; kwargs... )
125
- end
126
- function run_dc_opf (args... ; kwargs... )
127
- @warn (" the function run_dc_opf has been replaced with solve_dc_opf" , maxlog= 1 )
128
- solve_dc_opf (args... ; kwargs... )
129
- end
130
-
131
- function run_mn_opf (args... ; kwargs... )
132
- @warn (" the function run_mn_opf has been replaced with solve_mn_opf" , maxlog= 1 )
133
- solve_mn_opf (args... ; kwargs... )
134
- end
135
- function run_mn_opf_strg (args... ; kwargs... )
136
- @warn (" the function run_mn_opf_strg has been replaced with solve_mn_opf_strg" , maxlog= 1 )
137
- solve_mn_opf_strg (args... ; kwargs... )
138
- end
139
- function run_opf_ptdf (args... ; kwargs... )
140
- @warn (" the function run_opf_ptdf has been replaced with solve_opf_ptdf" , maxlog= 1 )
141
- solve_opf_ptdf (args... ; kwargs... )
142
- end
143
-
144
- function run_opf_bf (args... ; kwargs... )
145
- @warn (" the function run_opf_bf has been replaced with solve_opf_bf" , maxlog= 1 )
146
- solve_opf_bf (args... ; kwargs... )
147
- end
148
- function run_mn_opf_bf_strg (args... ; kwargs... )
149
- @warn (" the function run_mn_opf_bf_strg has been replaced with solve_mn_opf_bf_strg" , maxlog= 1 )
150
- solve_mn_opf_bf_strg (args... ; kwargs... )
151
- end
152
- function run_opf_iv (args... ; kwargs... )
153
- @warn (" the function run_opf_iv has been replaced with solve_opf_iv" , maxlog= 1 )
154
- solve_opf_iv (args... ; kwargs... )
155
- end
156
-
157
- function run_opb (args... ; kwargs... )
158
- @warn (" the function run_opb has been replaced with solve_opb" , maxlog= 1 )
159
- solve_opb (args... ; kwargs... )
160
- end
161
- function run_nfa_opb (args... ; kwargs... )
162
- @warn (" the function run_nfa_opb has been replaced with solve_nfa_opb" , maxlog= 1 )
163
- solve_nfa_opb (args... ; kwargs... )
164
- end
165
-
166
- function run_ots (args... ; kwargs... )
167
- @warn (" the function run_ots has been replaced with solve_ots" , maxlog= 1 )
168
- solve_ots (args... ; kwargs... )
169
- end
170
- function run_tnep (args... ; kwargs... )
171
- @warn (" the function run_tnep has been replaced with solve_tnep" , maxlog= 1 )
172
- solve_tnep (args... ; kwargs... )
173
- end
174
-
175
- function run_opf_branch_power_cuts (args... ; kwargs... )
176
- @warn (" the function run_opf_branch_power_cuts has been replaced with solve_opf_branch_power_cuts" , maxlog= 1 )
177
- solve_opf_branch_power_cuts (args... ; kwargs... )
178
- end
179
- function run_opf_branch_power_cuts! (args... ; kwargs... )
180
- @warn (" the function run_opf_branch_power_cuts! has been replaced with solve_opf_branch_power_cuts!" , maxlog= 1 )
181
- solve_opf_branch_power_cuts! (args... ; kwargs... )
182
- end
183
- function run_opf_ptdf_branch_power_cuts (args... ; kwargs... )
184
- @warn (" the function run_opf_ptdf_branch_power_cuts has been replaced with solve_opf_ptdf_branch_power_cuts" , maxlog= 1 )
185
- solve_opf_ptdf_branch_power_cuts (args... ; kwargs... )
186
- end
187
- function run_opf_ptdf_branch_power_cuts! (args... ; kwargs... )
188
- @warn (" the function run_opf_ptdf_branch_power_cuts! has been replaced with solve_opf_ptdf_branch_power_cuts!" , maxlog= 1 )
189
- solve_opf_ptdf_branch_power_cuts! (args... ; kwargs... )
190
- end
191
- function run_obbt_opf! (args... ; kwargs... )
192
- @warn (" the function run_obbt_opf! has been replaced with solve_obbt_opf!" , maxlog= 1 )
193
- solve_obbt_opf! (args... ; kwargs... )
194
- end
195
-
196
-
197
88
# this must come last to support automated export
198
89
include (" core/export.jl" )
199
90
0 commit comments