xlsynth 0.0.73

Accelerated Hardware Synthesis (XLS/XLSynth) via Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// SPDX-License-Identifier: Apache-2.0

#[derive(Debug)]
pub struct XlsynthError(pub String);

impl std::fmt::Display for XlsynthError {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        write!(f, "xlsynth error: {}", self.0)
    }
}

impl std::error::Error for XlsynthError {}