
Public メソッド | |
| wif_sc_fxval_fast_trace (const sc_dt::sc_fxval_fast &object_, const std::string &name_, const std::string &wif_name_) | |
| void | write (FILE *f) |
| bool | changed () |
Protected 変数 | |
| const sc_dt::sc_fxval_fast & | object |
| sc_dt::sc_fxval_fast | old_value |
sc_wif_trace.cpp の 672 行で定義されています。
| sc_core::wif_sc_fxval_fast_trace::wif_sc_fxval_fast_trace | ( | const sc_dt::sc_fxval_fast & | object_, | |
| const std::string & | name_, | |||
| const std::string & | wif_name_ | |||
| ) |
| void sc_core::wif_sc_fxval_fast_trace::write | ( | FILE * | f | ) | [virtual] |
sc_core::wif_traceを実装しています。
sc_wif_trace.cpp の 708 行で定義されています。
00709 { 00710 std::fprintf( f, "assign %s %f ; \n", wif_name.c_str(), object.to_double() ); 00711 old_value = object; 00712 }
| bool sc_core::wif_sc_fxval_fast_trace::changed | ( | ) | [virtual] |
sc_core::wif_traceを実装しています。
sc_wif_trace.cpp の 702 行で定義されています。
00703 { 00704 return object != old_value; 00705 }
const sc_dt::sc_fxval_fast& sc_core::wif_sc_fxval_fast_trace::object [protected] |
sc_wif_trace.cpp の 684 行で定義されています。
sc_wif_trace.cpp の 685 行で定義されています。
1.5.6