From 69c80fb5792fd0d371bf01d06f82dd73f5d9a85a Mon Sep 17 00:00:00 2001 From: Jamie Saxon Date: Thu, 3 Jul 2025 08:07:52 -0400 Subject: [PATCH] thread through the missing parameters --- access/access.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/access/access.py b/access/access.py index cf08234..35b977f 100644 --- a/access/access.py +++ b/access/access.py @@ -516,10 +516,10 @@ def raam( supply_values=None, normalize=False, tau=60, - rho=None, # noqa: ARG002 + rho=None, max_cycles=150, initial_step=0.2, - half_life=50, # noqa: ARG002 + half_life=50, min_step=0.005, verbose=False, ): @@ -673,9 +673,11 @@ def raam( cost_name=cost, max_cycles=max_cycles, tau=tau, + rho=rho, verbose=verbose, initial_step=initial_step, min_step=min_step, + half_life=half_life ) raam_costs.name = name + "_" + s