ForSyDe::SY::smoore< IT, ST, OT > Class Template Reference
Process constructor for a strict Moore machine. More...
#include <sy_process_constructors_strict.hpp>
Inheritance diagram for ForSyDe::SY::smoore< IT, ST, OT >:
Collaboration diagram for ForSyDe::SY::smoore< IT, ST, OT >:
Public Types | |
typedef std::function< void(ST &, const ST &, const IT &)> | ns_functype |
Type of the next-state function to be passed to the process constructor. | |
typedef std::function< void(OT &, const ST &)> | od_functype |
Type of the output-decoding function to be passed to the process constructor. | |
Public Member Functions | |
smoore (const sc_module_name &_name, const ns_functype &_ns_func, const od_functype &_od_func, const ST &init_st) | |
The constructor requires the module name. More... | |
std::string | forsyde_kind () const |
Specifying from which process constructor is the module built. | |
Public Member Functions inherited from ForSyDe::process | |
process (sc_module_name _name) | |
The constructor requires the module name. More... | |
Public Attributes | |
SY_in< IT > | iport1 |
port for the input channel | |
SY_out< OT > | oport1 |
port for the output channel | |
Additional Inherited Members | |
Protected Member Functions inherited from ForSyDe::process | |
void | end_of_simulation () |
This hook is used to run the clean stage. | |
Detailed Description
template<class IT, class ST, class OT>
class ForSyDe::SY::smoore< IT, ST, OT >
Process constructor for a strict Moore machine.
This class is used to build a finite state machine of type Moore. Given an initial state, a next-state function, and an output decoding function it creates a Moore process.
Constructor & Destructor Documentation
template<class IT, class ST, class OT>
|
inline |
The constructor requires the module name.
It creates an SC_THREAD which reads data from its input port, applies the user-imlpemented functions to the input and current state and writes the results using the output port
- Parameters
-
_name process name _ns_func The next_state function _od_func The output-decoding function init_st Initial state
The documentation for this class was generated from the following file:
- src/forsyde/sy_process_constructors_strict.hpp
Generated by Doxygen 1.8.11