Implementation of a fixed distribution. */
| 1531 | |
| 1532 | /* Implementation of a fixed distribution. */ |
| 1533 | CFixed::CFixed(double value) |
| 1534 | { |
| 1535 | this->value = value; |
| 1536 | } |
| 1537 | double CFixed::sample() |
| 1538 | { |
| 1539 | return value; |
nothing calls this directly
no outgoing calls
no test coverage detected