From 16cb3466560bf2da789c5b64e43cedc706efc77d Mon Sep 17 00:00:00 2001 From: Luca Mondada Date: Tue, 3 Oct 2023 15:14:29 +0200 Subject: [PATCH] Remove ref to defunct CXCountStrat --- src/rewrite/strategy.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rewrite/strategy.rs b/src/rewrite/strategy.rs index b05424db..38a63e3f 100644 --- a/src/rewrite/strategy.rs +++ b/src/rewrite/strategy.rs @@ -8,7 +8,7 @@ //! possible rewrite (with some pruning strategy): //! - [`NonIncreasingGateCountStrategy`], which only considers rewrites that //! do not increase some cost function (e.g. cx gate count, implemented as -//! [`NonIncreasingCXCountStrategy`]), and +//! [`NonIncreasingGateCountStrategy::default_cx`]), and //! - [`ExhaustiveGammaStrategy`], which ignores rewrites that increase the //! cost function beyond a threshold given by a f64 parameter gamma.