Public メソッド | |
wif_sc_fxval_trace (const sc_dt::sc_fxval &object_, const std::string &name_, const std::string &wif_name_) | |
void | write (FILE *f) |
bool | changed () |
Protected 変数 | |
const sc_dt::sc_fxval & | object |
sc_dt::sc_fxval | old_value |
sc_wif_trace.cpp の 629 行で定義されています。
sc_core::wif_sc_fxval_trace::wif_sc_fxval_trace | ( | const sc_dt::sc_fxval & | object_, | |
const std::string & | name_, | |||
const std::string & | wif_name_ | |||
) |
void sc_core::wif_sc_fxval_trace::write | ( | FILE * | f | ) | [virtual] |
sc_core::wif_traceを実装しています。
sc_wif_trace.cpp の 664 行で定義されています。
00665 { 00666 std::fprintf( f, "assign %s %f ; \n", wif_name.c_str(), object.to_double() ); 00667 old_value = object; 00668 }
bool sc_core::wif_sc_fxval_trace::changed | ( | ) | [virtual] |
sc_core::wif_traceを実装しています。
sc_wif_trace.cpp の 658 行で定義されています。
00659 { 00660 return object != old_value; 00661 }
const sc_dt::sc_fxval& sc_core::wif_sc_fxval_trace::object [protected] |
sc_wif_trace.cpp の 641 行で定義されています。
sc_wif_trace.cpp の 642 行で定義されています。