Skip to content

Commit 0d00410

Browse files
authored
Merge branch 'main' into immutable-expr-args
2 parents 3e29795 + 85b63ab commit 0d00410

19 files changed

Lines changed: 27 additions & 43 deletions

pyomo/contrib/parmest/examples/reactor_design/bootstrap_example.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# This software is distributed under the 3-clause BSD License.
1010
# ___________________________________________________________________________
1111

12-
import pandas as pd
12+
from pyomo.common.dependencies import pandas as pd
1313
from os.path import join, abspath, dirname
1414
import pyomo.contrib.parmest.parmest as parmest
1515
from pyomo.contrib.parmest.examples.reactor_design.reactor_design import (

pyomo/contrib/parmest/examples/reactor_design/datarec_example.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@
99
# This software is distributed under the 3-clause BSD License.
1010
# ___________________________________________________________________________
1111

12-
import numpy as np
13-
import pandas as pd
12+
from pyomo.common.dependencies import numpy as np, pandas as pd
1413
import pyomo.contrib.parmest.parmest as parmest
1514
from pyomo.contrib.parmest.examples.reactor_design.reactor_design import (
1615
reactor_design_model,

pyomo/contrib/parmest/examples/reactor_design/leaveNout_example.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@
99
# This software is distributed under the 3-clause BSD License.
1010
# ___________________________________________________________________________
1111

12-
import numpy as np
13-
import pandas as pd
12+
from pyomo.common.dependencies import numpy as np, pandas as pd
1413
from os.path import join, abspath, dirname
1514
import pyomo.contrib.parmest.parmest as parmest
1615
from pyomo.contrib.parmest.examples.reactor_design.reactor_design import (

pyomo/contrib/parmest/examples/reactor_design/likelihood_ratio_example.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@
99
# This software is distributed under the 3-clause BSD License.
1010
# ___________________________________________________________________________
1111

12-
import numpy as np
13-
import pandas as pd
12+
from pyomo.common.dependencies import numpy as np, pandas as pd
1413
from itertools import product
1514
from os.path import join, abspath, dirname
1615
import pyomo.contrib.parmest.parmest as parmest

pyomo/contrib/parmest/examples/reactor_design/multisensor_data_example.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# This software is distributed under the 3-clause BSD License.
1010
# ___________________________________________________________________________
1111

12-
import pandas as pd
12+
from pyomo.common.dependencies import pandas as pd
1313
from os.path import join, abspath, dirname
1414
import pyomo.contrib.parmest.parmest as parmest
1515
from pyomo.contrib.parmest.examples.reactor_design.reactor_design import (

pyomo/contrib/parmest/examples/reactor_design/parameter_estimation_example.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# This software is distributed under the 3-clause BSD License.
1010
# ___________________________________________________________________________
1111

12-
import pandas as pd
12+
from pyomo.common.dependencies import pandas as pd
1313
from os.path import join, abspath, dirname
1414
import pyomo.contrib.parmest.parmest as parmest
1515
from pyomo.contrib.parmest.examples.reactor_design.reactor_design import (

pyomo/contrib/parmest/examples/reactor_design/reactor_design.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
Continuously stirred tank reactor model, based on
1313
pyomo/examples/doc/pyomobook/nonlinear-ch/react_design/ReactorDesign.py
1414
"""
15-
import pandas as pd
15+
from pyomo.common.dependencies import pandas as pd
1616
from pyomo.environ import (
1717
ConcreteModel,
1818
Param,

pyomo/contrib/parmest/examples/reactor_design/timeseries_data_example.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# This software is distributed under the 3-clause BSD License.
1010
# ___________________________________________________________________________
1111

12-
import pandas as pd
12+
from pyomo.common.dependencies import pandas as pd
1313
from os.path import join, abspath, dirname
1414

1515
import pyomo.contrib.parmest.parmest as parmest

pyomo/contrib/parmest/examples/rooney_biegler/bootstrap_example.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# This software is distributed under the 3-clause BSD License.
1010
# ___________________________________________________________________________
1111

12-
import pandas as pd
12+
from pyomo.common.dependencies import pandas as pd
1313
import pyomo.contrib.parmest.parmest as parmest
1414
from pyomo.contrib.parmest.examples.rooney_biegler.rooney_biegler import (
1515
rooney_biegler_model,

pyomo/contrib/parmest/examples/rooney_biegler/likelihood_ratio_example.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@
99
# This software is distributed under the 3-clause BSD License.
1010
# ___________________________________________________________________________
1111

12-
import numpy as np
13-
import pandas as pd
12+
from pyomo.common.dependencies import numpy as np, pandas as pd
1413
from itertools import product
1514
import pyomo.contrib.parmest.parmest as parmest
1615
from pyomo.contrib.parmest.examples.rooney_biegler.rooney_biegler import (

0 commit comments

Comments
 (0)