1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright (c) 2020-2021 Thomas Kramer.
// SPDX-FileCopyrightText: 2022 Thomas Kramer <code@tkramer.ch>
//
// SPDX-License-Identifier: AGPL-3.0-or-later

//! Interface definitions for routing related algorithms.

pub mod airwire_router;
pub mod detail_router;
pub mod global_router;
pub mod pin_access_oracle;
pub mod prelude;
pub mod routing_problem;
pub mod simple_router;