Skip to content

Commit

Permalink
Update hyperit.py
Browse files Browse the repository at this point in the history
  • Loading branch information
EdoardoChidichimo authored May 1, 2024
1 parent 65d440e commit 4e040ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hyperit/hyperit.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ class HyperIT:
_jvm_initialised = False

@classmethod
def setup_JVM(cls, jarLocation: str = '', verbose: bool = False) -> None:
def setup_JVM(cls, verbose: bool = False) -> None:
"""Setup JVM if not already started. To be called once before creating any instances."""
if not cls._jvm_initialised:
if not isJVMStarted():
Expand Down Expand Up @@ -885,4 +885,4 @@ def compute_atoms(self, tau: int = 1, redundancy: str = 'MMI', include_intra: bo

self._measure = MeasureType.PhyID
self._measure_title = 'Integrated Information Decomposition'
return self.__setup_atom_calc(tau, redundancy, include_intra)
return self.__setup_atom_calc(tau, redundancy, include_intra)

0 comments on commit 4e040ab

Please sign in to comment.