forked from zlatko-minev/pyEPR
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_quantum_analysis.py
49 lines (38 loc) · 1.46 KB
/
test_quantum_analysis.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
'''
Unit tests for quantum analysis. Takes in pre-made data with known results,
computes the results from the data and checks everything is correct.
'''
import unittest
import pickle
import numpy as np
import sys
sys.path.append('..') # noqa
import pyEPR as epr
# Files location
save_file = './data.npz'
correct_results = './correct_results.pkl'
class TestQuantumAnalysis(unittest.TestCase):
def setUp(self):
self.epra = epr.QuantumAnalysis(save_file)
with open(correct_results, 'rb') as file:
self.correct_res = pickle.load(file)
def test_analyze_all_variations(self):
'''
Check that the calculated results matches the known correct ones
'''
results = self.epra.analyze_all_variations(
cos_trunc=8, fock_trunc=15, print_result=False)['0'] # Variation 0
# TODO: Remove start/finish diagonalization messages (back_box_numeric L:153)
for key, value in results.items():
if key == 'hfss_variables': # All numeric-only datatypes
return
value = np.array(value)
corr_value = np.array(self.correct_res[key])
self.assertTrue(np.allclose(value, corr_value))
epr.logger.info(key+' '+'-'*(13 - len(key))+'-> OK!')
def test_analyze_variation(self):
pass
def test_hamiltonian(self):
pass # TODO: Need to pass **kwargs to epr_num_diag for return_H option
def test_properties(self):
pass