| 486 | |
| 487 | |
| 488 | class MSdata { |
| 489 | public: |
| 490 | MSdata() { |
| 491 | nodes.resize(1); |
| 492 | } |
| 493 | MSdata(long n) { |
| 494 | nodes.resize(n); |
| 495 | } |
| 496 | int nsegments; |
| 497 | int nstates; |
| 498 | int nparameters; |
| 499 | int ncontrols; |
| 500 | int npath; |
| 501 | int ninitial_events; |
| 502 | int nfinal_events; |
| 503 | bool continuous_controls; |
| 504 | RowVectorXi nodes; |
| 505 | }; |
| 506 | |
| 507 | |
| 508 | typedef struct { |
nothing calls this directly
no outgoing calls
no test coverage detected