@@ -61,7 +61,7 @@ impl PyPhaseEquilibrium {
6161 #[ pyo3( signature = ( eos, temperature_or_pressure, initial_state=None , max_iter=None , tol=None , verbosity=None ) ) ]
6262 pub ( crate ) fn pure (
6363 eos : & PyEquationOfState ,
64- temperature_or_pressure : Bound < ' _ , PyAny > ,
64+ temperature_or_pressure : & Bound < ' _ , PyAny > ,
6565 initial_state : Option < & PyPhaseEquilibrium > ,
6666 max_iter : Option < usize > ,
6767 tol : Option < f64 > ,
@@ -198,9 +198,9 @@ impl PyPhaseEquilibrium {
198198 #[ expect( clippy:: too_many_arguments) ]
199199 pub ( crate ) fn bubble_point < ' py > (
200200 eos : & PyEquationOfState ,
201- temperature_or_pressure : Bound < ' _ , PyAny > ,
201+ temperature_or_pressure : & Bound < ' _ , PyAny > ,
202202 liquid_molefracs : PyReadonlyArray1 < ' py , f64 > ,
203- tp_init : Option < Bound < ' _ , PyAny > > ,
203+ tp_init : Option < & Bound < ' _ , PyAny > > ,
204204 vapor_molefracs : Option < PyReadonlyArray1 < ' py , f64 > > ,
205205 max_iter_inner : Option < usize > ,
206206 max_iter_outer : Option < usize > ,
@@ -286,9 +286,9 @@ impl PyPhaseEquilibrium {
286286 #[ expect( clippy:: too_many_arguments) ]
287287 pub ( crate ) fn dew_point < ' py > (
288288 eos : & PyEquationOfState ,
289- temperature_or_pressure : Bound < ' _ , PyAny > ,
289+ temperature_or_pressure : & Bound < ' _ , PyAny > ,
290290 vapor_molefracs : PyReadonlyArray1 < ' py , f64 > ,
291- tp_init : Option < Bound < ' _ , PyAny > > ,
291+ tp_init : Option < & Bound < ' _ , PyAny > > ,
292292 liquid_molefracs : Option < PyReadonlyArray1 < ' py , f64 > > ,
293293 max_iter_inner : Option < usize > ,
294294 max_iter_outer : Option < usize > ,
@@ -398,7 +398,7 @@ impl PyPhaseEquilibrium {
398398 #[ staticmethod]
399399 fn vle_pure_comps (
400400 eos : & PyEquationOfState ,
401- temperature_or_pressure : Bound < ' _ , PyAny > ,
401+ temperature_or_pressure : & Bound < ' _ , PyAny > ,
402402 ) -> PyResult < Vec < Option < Self > > > {
403403 if let Ok ( t) = temperature_or_pressure. extract :: < Temperature > ( ) {
404404 Ok ( PhaseEquilibrium :: vle_pure_comps ( & eos. 0 , t)
@@ -514,9 +514,9 @@ impl PyPhaseEquilibrium {
514514 #[ expect( clippy:: too_many_arguments) ]
515515 fn heteroazeotrope (
516516 eos : & PyEquationOfState ,
517- temperature_or_pressure : Bound < ' _ , PyAny > ,
517+ temperature_or_pressure : & Bound < ' _ , PyAny > ,
518518 x_init : ( f64 , f64 ) ,
519- tp_init : Option < Bound < ' _ , PyAny > > ,
519+ tp_init : Option < & Bound < ' _ , PyAny > > ,
520520 max_iter : Option < usize > ,
521521 tol : Option < f64 > ,
522522 verbosity : Option < PyVerbosity > ,
@@ -1224,7 +1224,7 @@ impl PyPhaseDiagram {
12241224 #[ expect( clippy:: too_many_arguments) ]
12251225 pub ( crate ) fn binary_vle (
12261226 eos : & PyEquationOfState ,
1227- temperature_or_pressure : Bound < ' _ , PyAny > ,
1227+ temperature_or_pressure : & Bound < ' _ , PyAny > ,
12281228 npoints : Option < usize > ,
12291229 x_lle : Option < ( f64 , f64 ) > ,
12301230 max_iter_inner : Option < usize > ,
@@ -1299,7 +1299,7 @@ impl PyPhaseDiagram {
12991299 #[ pyo3( signature = ( eos, temperature_or_pressure, feed, min_tp, max_tp, npoints=None ) ) ]
13001300 pub ( crate ) fn lle (
13011301 eos : & PyEquationOfState ,
1302- temperature_or_pressure : Bound < ' _ , PyAny > ,
1302+ temperature_or_pressure : & Bound < ' _ , PyAny > ,
13031303 feed : Moles < DVector < f64 > > ,
13041304 min_tp : Bound < ' _ , PyAny > ,
13051305 max_tp : Bound < ' _ , PyAny > ,
@@ -1388,10 +1388,10 @@ impl PyPhaseDiagram {
13881388 #[ expect( clippy:: too_many_arguments) ]
13891389 pub ( crate ) fn binary_vlle (
13901390 eos : & PyEquationOfState ,
1391- temperature_or_pressure : Bound < ' _ , PyAny > ,
1391+ temperature_or_pressure : & Bound < ' _ , PyAny > ,
13921392 x_lle : ( f64 , f64 ) ,
1393- tp_lim_lle : Option < Bound < ' _ , PyAny > > ,
1394- tp_init_vlle : Option < Bound < ' _ , PyAny > > ,
1393+ tp_lim_lle : Option < & Bound < ' _ , PyAny > > ,
1394+ tp_init_vlle : Option < & Bound < ' _ , PyAny > > ,
13951395 npoints_vle : Option < usize > ,
13961396 npoints_lle : Option < usize > ,
13971397 max_iter_inner : Option < usize > ,
0 commit comments