| 132 | } |
| 133 | |
| 134 | bool NodeDef::validate(string* message) const |
| 135 | { |
| 136 | bool res = true; |
| 137 | validateRequire(!hasType(), res, message, "Nodedef should not have a type but an explicit output"); |
| 138 | return InterfaceElement::validate(message) && res; |
| 139 | } |
| 140 | |
| 141 | bool NodeDef::isVersionCompatible(const string& version) const |
| 142 | { |
nothing calls this directly
no test coverage detected