Skip to content

Commit 83bc3a0

Browse files
authored
Change isokinetic_integrator generation API (#689)
1 parent a3e235f commit 83bc3a0

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

blackjax/mcmc/integrators.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -374,9 +374,8 @@ def format_isokinetic_state_output(
374374

375375
def generate_isokinetic_integrator(coefficients):
376376
def isokinetic_integrator(
377-
logdensity_fn: Callable, *args, **kwargs
377+
logdensity_fn: Callable, sqrt_diag_cov: ArrayTree = 1.0
378378
) -> GeneralIntegrator:
379-
sqrt_diag_cov = kwargs.get("sqrt_diag_cov", 1.0)
380379
position_update_fn = euclidean_position_update_fn(logdensity_fn)
381380
one_step = generalized_two_stage_integrator(
382381
esh_dynamics_momentum_update_one_step(sqrt_diag_cov),

0 commit comments

Comments
 (0)