source: trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Stat_binary_tree_val_leaf.cpp @ 81

Last change on this file since 81 was 81, checked in by rosiere, 16 years ago
  • Finish Environment (and test)
  • Continue predictor_unit
  • Add external tools
  • svn keyword "Id" set
  • Property svn:executable set to *
  • Property svn:keywords set to Id
File size: 400 bytes
Line 
1#ifdef STATISTICS
2#include "Behavioural/include/Stat_binary_tree.h"
3
4namespace morpheo {
5namespace behavioural { 
6  counter_t Stat_binary_tree::val_leaf (void)
7  {
8    if (_data_type == CONSTANT)
9      {
10        return _data.cst;
11      }
12    if (_data_type == VARIABLE)
13      {
14        return *(_data.var);
15      }
16   
17    throw(ERRORMORPHEO("Stat_binary_tree::val_leaf",_("Invalid leaf.")));
18  }
19}; 
20};
21#endif
Note: See TracBrowser for help on using the repository browser.