Skip to content

Commit

Permalink
Fixed bug with interlaced averaging
Browse files Browse the repository at this point in the history
  • Loading branch information
foxfixfax committed May 12, 2022
1 parent 76dfb13 commit aee627c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
author = 'Mykyta Onizhuk'

# The full version, including alpha/beta/rc tags
release = '1.0.0'
release = '1.0.1.2'


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion pycce/run/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ def __init__(self, timespace,

self.has_states = False
"""bool: Whether there are states provided in the bath during the run."""
self.initial_states_mask = bath.has_state
self.initial_states_mask = bath.has_state.copy()
"""ndarray: Bool array of the states, initially present in the bath."""
self.pulses = pulses
""" Sequence: Sequence object, containing series of pulses, applied to the system."""
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

setup(
name='pycce',
version='1.0.1.1',
version='1.0.1.2',
url='',
license='',
author='Nikita Onizhuk',
Expand Down

0 comments on commit aee627c

Please sign in to comment.