File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -217,7 +217,6 @@ def __init__(
217217 long_range_rows = 4 ,
218218 is_transpose = False ,
219219 is_schmidt_decompose_multi = False ,
220- is_schmidt_decompose = True ,
221220 is_stabilizer_hybrid = False ,
222221 is_binary_decision_tree = False ,
223222 is_gpu = True ,
@@ -316,7 +315,6 @@ def __init__(
316315 else QrackSimulator (
317316 sim_counts [i ],
318317 is_schmidt_decompose_multi = is_schmidt_decompose_multi ,
319- is_schmidt_decompose = is_schmidt_decompose ,
320318 is_stabilizer_hybrid = is_stabilizer_hybrid ,
321319 is_binary_decision_tree = is_binary_decision_tree ,
322320 is_gpu = is_gpu ,
Original file line number Diff line number Diff line change @@ -50,7 +50,6 @@ def __init__(
5050 qubit_count = - 1 ,
5151 clone_sid = - 1 ,
5252 is_schmidt_decompose_multi = False ,
53- is_schmidt_decompose = True ,
5453 is_stabilizer_hybrid = False ,
5554 is_binary_decision_tree = False ,
5655 is_gpu = True ,
@@ -73,6 +72,7 @@ def __init__(
7372 is_gpu = False
7473 else :
7574 is_tensor_network = True
75+ is_schmidt_decompose = True
7676 if is_sparse :
7777 is_gpu = False
7878
@@ -3428,9 +3428,7 @@ def in_from_file(
34283428 with open (filename ) as f :
34293429 qb_count = int (f .readline ())
34303430 out = QrackSimulator (
3431- qubitCount = qb_count ,
3432- is_schmidt_decompose_multi = False ,
3433- is_schmidt_decompose = False ,
3431+ qubit_count = qb_count ,
34343432 is_stabilizer_hybrid = True ,
34353433 is_binary_decision_tree = is_binary_decision_tree ,
34363434 is_gpu = is_gpu ,
You can’t perform that action at this time.
0 commit comments