| 29 | // ---------------------------------------------------------------------- |
| 30 | |
| 31 | AnyType coxph_step_outer_transition::run(AnyType &args) { |
| 32 | if (args[0].isNull()) return args[1]; |
| 33 | if (args[1].isNull()) return args[0]; |
| 34 | |
| 35 | CoxPHState<MutableArrayHandle<double> > stateLeft = args[0]; |
| 36 | CoxPHState<ArrayHandle<double> > stateRight = args[1]; |
| 37 | |
| 38 | stateLeft += stateRight; |
| 39 | return stateLeft; |
| 40 | } |
| 41 | |
| 42 | // ---------------------------------------------------------------------- |
| 43 |
nothing calls this directly
no test coverage detected