From e1d80fe2c456bd54463a2dc7c5fd5ed5329a3187 Mon Sep 17 00:00:00 2001 From: hakki Date: Tue, 1 Oct 2024 19:27:16 +0200 Subject: [PATCH] Autorouter: resolved the issues --- src/autorouter/autoroute.rs | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/autorouter/autoroute.rs b/src/autorouter/autoroute.rs index 55ee637..415e2ef 100644 --- a/src/autorouter/autoroute.rs +++ b/src/autorouter/autoroute.rs @@ -17,8 +17,6 @@ use super::{ }; /// Represents the current status of the autoroute operation. -/// -/// This enum tracks the different states of the autoroute process. pub enum AutorouteStatus { /// The autoroute is currently running and in progress. Running, @@ -28,7 +26,6 @@ pub enum AutorouteStatus { Finished, } - impl TryInto<()> for AutorouteStatus { type Error = (); /// Attempts to get the [`Result`] from the [`AutorouteStatus`]. @@ -46,10 +43,6 @@ impl TryInto<()> for AutorouteStatus { } /// Manages the autorouting process across multiple ratlines. -/// -/// Consist routing logic for each -/// ratline while managing its options as well as -/// the current route state. pub struct AutorouteExecutionStepper { /// An iterator over ratlines that tracks which segments still need to be routed. ratlines_iter: Box>>,