-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathdevstone_coupled_hi.hpp
More file actions
28 lines (24 loc) · 916 Bytes
/
devstone_coupled_hi.hpp
File metadata and controls
28 lines (24 loc) · 916 Bytes
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
/**
* SPDX-License-Identifier: MIT
* Copyright (c) 2022-present Guillermo Trabes
* ARSLab - Carleton University
* Copyright (c) 2022-present Román Cárdenas Rodríguez
* ARSLab - Carleton University
*/
#ifndef CADMIUM_EXAMPLE_DEVSTONE_COUPLED_HI_HPP_
#define CADMIUM_EXAMPLE_DEVSTONE_COUPLED_HI_HPP_
#include "devstone_coupled.hpp"
namespace cadmium::example::devstone {
//! HI DEVStone model class.
struct DEVStoneCoupledHI : public DEVStoneCoupled {
/**
* HI model constructor function.
* @param width width of the HI DEVStone model.
* @param depth depth of the HI DEVStone model.
* @param intDelay internal delay for the DEVStone atomic models.
* @param extDelay external delay for the DEVStone atomic models.
*/
DEVStoneCoupledHI(int width, int depth, int intDelay, int extDelay);
};
} //namespace cadmium::example::devstone
#endif //CADMIUM_EXAMPLE_DEVSTONE_COUPLED_HI_HPP_