#include <local.hxx>
|
| Local (UserFun &) |
|
| ~Local (void) |
|
virtual void | put (long, std::vector< double > &) |
|
virtual std::vector< double > * | get (long *) |
|
|
UserFun * | fun |
|
std::queue< std::pair< long,
std::vector< double > * > > | q |
|
Definition at line 31 of file local.hxx.
Definition at line 27 of file local.cxx.
References q.
29 std::pair<long,std::vector<double> *> pa;
std::vector< double > * Local::get |
( |
long * |
id | ) |
|
|
virtual |
Implements Distrib.
Definition at line 47 of file local.cxx.
References UserFun::eval(), fun, and q.
49 std::vector<double> *cal, *res;
50 std::pair<long,std::vector<double> *> pa;
52 pa =
q.front();
q.pop();
53 *
id = pa.first; cal = pa.second;
void Local::put |
( |
long |
id, |
|
|
std::vector< double > & |
cal |
|
) |
| |
|
virtual |
Implements Distrib.
Definition at line 38 of file local.cxx.
References q.
40 std::pair<long, std::vector<double> *> *tmp;
42 tmp =
new std::pair<long, std::vector<double> *>(id, &cal);
std::queue<std::pair<long, std::vector<double> *> > Local::q |
|
protected |
The documentation for this class was generated from the following files: