Skip to content

Commit

Permalink
Fix pre-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ricardoV94 committed Dec 5, 2024
1 parent 3722967 commit 955ac23
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions pymc/step_methods/hmc/nuts.py
Original file line number Diff line number Diff line change
Expand Up @@ -242,24 +242,24 @@ def competence(var, has_grad):

class _Tree:
__slots__ = (
"ndim",
"integrator",
"start",
"step_size",
"Emax",
"start_energy",
"rng",
"left",
"right",
"proposal",
"depth",
"log_size",
"floatX",
"integrator",
"left",
"log_accept_sum",
"log_size",
"max_energy_change",
"mean_tree_accept",
"n_proposals",
"ndim",
"p_sum",
"max_energy_change",
"floatX",
"proposal",
"right",
"rng",
"start",
"start_energy",
"step_size",
)

def __init__(
Expand Down

0 comments on commit 955ac23

Please sign in to comment.