| 74 | } |
| 75 | |
| 76 | void FuzzyStringComparator::setAcceptableAbsolute(const double rhs) |
| 77 | { |
| 78 | this->absdiff_max_allowed_ = rhs; |
| 79 | if (absdiff_max_allowed_ < 0.0) |
| 80 | { |
| 81 | absdiff_max_allowed_ = -absdiff_max_allowed_; |
| 82 | } |
| 83 | } |
| 84 | |
| 85 | const StringList& FuzzyStringComparator::getWhitelist() const |
| 86 | { |
no outgoing calls