| 12 | namespace chi { |
| 13 | |
| 14 | Result validateFunction(const GraphFunction& func) { |
| 15 | Result res; |
| 16 | |
| 17 | res += validateFunctionConnectionsAreTwoWay(func); |
| 18 | res += validateFunctionNodeInputs(func); |
| 19 | res += validateFunctionExecOutputs(func); |
| 20 | |
| 21 | return res; |
| 22 | } |
| 23 | |
| 24 | Result validateFunctionConnectionsAreTwoWay(const GraphFunction& func) { |
| 25 | Result res; |
no test coverage detected