Skip to content

Commit

Permalink
final commits
Browse files Browse the repository at this point in the history
  • Loading branch information
dehe1011 committed Oct 25, 2024
1 parent f5d6595 commit ca1d866
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<img src="https://readthedocs.org/projects/quantumdna/badge/?version=latest"
alt="Documentation Status"></a>
<a href="https://github.com/dehe1011/QuantumDNA/releases">
<img src="https://img.shields.io/badge/version-0.1.6-blue"
<img src="https://img.shields.io/badge/version-0.1.7-blue"
alt="Release"></a>
<a href='https://coveralls.io/github/dehe1011/QuantumDNA?branch=main'>
<img src='https://coveralls.io/repos/github/dehe1011/QuantumDNA/badge.svg?branch=main'
Expand Down
2 changes: 1 addition & 1 deletion qDNA/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.1.6"
__version__ = "0.1.7"

import pathlib
import os
Expand Down
1 change: 0 additions & 1 deletion qDNA/dynamics/solver.py
Original file line number Diff line number Diff line change
Expand Up @@ -529,7 +529,6 @@ def get_me_solver(upper_strand, tb_model_name, **kwargs):
"""

dna_seq = DNA_Seq(upper_strand, tb_model_name)
print(DEFAULTS)
tb_ham = TB_Ham(dna_seq, **kwargs)
lindblad_diss = Lindblad_Diss(tb_ham, **kwargs)
me_solver = ME_Solver(tb_ham, lindblad_diss, **kwargs)
Expand Down
2 changes: 0 additions & 2 deletions qDNA/hamiltonian/tb_ham.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,9 +120,7 @@ def __init__(self, dna_seq, **ham_kwargs):
# check inputs
assert isinstance(dna_seq, DNA_Seq), "dna_seq must be an instance of DNA_Seq"
self.ham_kwargs = copy.copy(DEFAULTS["ham_kwargs_default"])
print(DEFAULTS)
self.ham_kwargs.update(ham_kwargs)
print(DEFAULTS)
check_ham_kwargs(**self.ham_kwargs)
self.verbose = DEFAULTS["verbose"]
if self.verbose:
Expand Down

0 comments on commit ca1d866

Please sign in to comment.