| 637 | } |
| 638 | |
| 639 | bool isCompatible(const std::string& className, const std::string& scheduleDisplayName, const ScheduleTypeLimits& candidate) { |
| 640 | ScheduleType scheduleType = ScheduleTypeRegistry::instance().getScheduleType(className, scheduleDisplayName); |
| 641 | // Always call with isString=false |
| 642 | return isCompatible(scheduleType, candidate, false); |
| 643 | } |
| 644 | |
| 645 | bool isCompatible(const ScheduleType& scheduleType, const ScheduleTypeLimits& candidate, bool isStringent) { |
| 646 | // do not check continuous/discrete |
no test coverage detected