Initialize options for example with name \a s
| 68 | public: |
| 69 | /// Initialize options for example with name \a s |
| 70 | QCPOptions(const char* s) |
| 71 | : InstanceOptions(s), |
| 72 | _tbf("tbf", "tie-breaking factor",0.0) { |
| 73 | // Add options |
| 74 | add(_tbf); |
| 75 | } |
| 76 | /// Return tie-breaking factor |
| 77 | double tbf(void) const { |
| 78 | return _tbf.value(); |