Skip to content

Commit 443cb3c

Browse files
updating minimum tol to 1e-12
1 parent 093ed8b commit 443cb3c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

crates/synthesis/src/qsd.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ use qiskit_circuit::{BlocksMode, Qubit, VarsMode};
4343
use qiskit_quantum_info::convert_2q_block_matrix::instructions_to_matrix;
4444

4545
const EPS: f64 = 1e-10;
46-
const MINIMUM_TOL: f64 = 1e-8;
46+
const MINIMUM_TOL: f64 = 1e-12;
4747

4848
/// Errors that might occur during QSD synthesis algorithm
4949
#[derive(Error, Debug)]

0 commit comments

Comments
 (0)