1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
use types::*;

#[derive(Clone, Copy)]
#[repr(C)]
pub struct CellDimensions_t {
    pub FirstWallLength: CellDimension_t,
    pub WallLength: CellDimension_t,
    pub ChannelLength: CellDimension_t,
    pub LastWallLength: CellDimension_t,
    pub Width: CellDimension_t,
    pub NHeights: Quantity_t,
    pub Heights: *mut CellDimension_t,
}

#[derive(Clone, Copy)]
#[repr(C)]
pub struct GridDimensions_t {
    pub NLayers: CellIndex_t,
    pub NRows: CellIndex_t,
    pub NColumns: CellIndex_t,
    pub NCells: CellIndex_t,
    pub NConnections: CellIndex_t,
}

#[derive(Clone, Copy)]
#[repr(C)]
pub struct ChipDimensions_t {
    pub Length: ChipDimension_t,
    pub Width: ChipDimension_t,
}

#[derive(Clone, Copy)]
#[repr(C)]
pub struct Dimensions_t {
    pub Cell: CellDimensions_t,
    pub Grid: GridDimensions_t,
    pub Chip: ChipDimensions_t,
}

extern "C" {
    pub fn get_number_of_layers(dimensions: *mut Dimensions_t) -> CellIndex_t;
    pub fn get_number_of_rows (dimensions: *mut Dimensions_t) -> CellIndex_t;
    pub fn get_number_of_columns (dimensions: *mut Dimensions_t) -> CellIndex_t;
    pub fn get_number_of_cells(dimensions: *mut Dimensions_t) -> CellIndex_t;
    pub fn get_number_of_connections(dimensions: *mut Dimensions_t) -> CellIndex_t;
    pub fn get_layer_area(dimensions: *mut Dimensions_t) -> CellIndex_t;
}