Skip to content

Commit 5e1d04a

Browse files
committed
Undo the trial fix in the datarec.rst and driver.rst files
1 parent 2c2f202 commit 5e1d04a

File tree

2 files changed

+0
-12
lines changed

2 files changed

+0
-12
lines changed

doc/OnlineDocs/explanation/analysis/parmest/datarec.rst

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,5 @@ The following example returns model values from a Pyomo Expression.
5050
... return expr
5151

5252
>>> pest = parmest.Estimator(exp_list, obj_function=SSE, solver_options=None)
53-
INFO: Model has expected labels.
54-
WARNING: DEPRECATED: You're using a deprecated input to the `obj_function` argument by passing a custom function.
55-
This usage will be removed in a future release. Please update to the new parmest interface using the built-in 'SSE'
56-
and 'SSE_weighted' objectives. (deprecated in 6.9.3.dev0)
5753
>>> obj, theta, var_values = pest.theta_est(return_values=['response_function'])
5854
>>> #print(var_values)

doc/OnlineDocs/explanation/analysis/parmest/driver.rst

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -84,10 +84,6 @@ Section.
8484

8585
>>> import pyomo.contrib.parmest.parmest as parmest
8686
>>> pest = parmest.Estimator(exp_list, obj_function=SSE)
87-
INFO: Model has expected labels.
88-
WARNING: DEPRECATED: You're using a deprecated input to the `obj_function` argument by passing a custom function.
89-
This usage will be removed in a future release. Please update to the new parmest interface using the built-in 'SSE'
90-
and 'SSE_weighted' objectives. (deprecated in 6.9.3.dev0)
9187

9288
Optionally, solver options can be supplied, e.g.,
9389

@@ -96,10 +92,6 @@ Optionally, solver options can be supplied, e.g.,
9692

9793
>>> solver_options = {"max_iter": 6000}
9894
>>> pest = parmest.Estimator(exp_list, obj_function=SSE, solver_options=solver_options)
99-
INFO: Model has expected labels.
100-
WARNING: DEPRECATED: You're using a deprecated input to the `obj_function` argument by passing a custom function.
101-
This usage will be removed in a future release. Please update to the new parmest interface using the built-in 'SSE'
102-
and 'SSE_weighted' objectives. (deprecated in 6.9.3.dev0)
10395

10496

10597
List of experiment objects

0 commit comments

Comments
 (0)