#pragma XOD dirtieness disable
struct State {
};
{{ GENERATED_CODE }}
void evaluate(Context ctx) {
auto x = getValue<input_IN1>(ctx);
auto y = getValue<input_IN2>(ctx);
emitValue<output_OUT>(ctx, x + y);
}| IN1 | IN2 | OUT |
| 1 | 0 | 1 |
| 0 | 1 | 1 |
| 0 | 0 | 0 |
| NaN | NaN | NaN |
| NaN | Inf | NaN |
| NaN | -Inf | NaN |
| Inf | NaN | NaN |
| -Inf | NaN | NaN |
| Inf | Inf | Inf |
| -Inf | -Inf | -Inf |
| -Inf | Inf | NaN |
| Inf | -Inf | NaN |