(ce: ComputeEngine, name: string)
| 503 | * For multi-index: Map<string, Expression> with keys like '0,0', 'n,0' |
| 504 | */ |
| 505 | base: Map<number | string, Expression>; |
| 506 | /** |
| 507 | * Recurrence definition. |
| 508 | * For single-index: variable is a string (e.g., 'n') |
| 509 | * For multi-index: variables is an array (e.g., ['n', 'k']) |
| 510 | */ |
| 511 | recurrence?: { |
| 512 | variable?: string; |
| 513 | variables?: string[]; |
| 514 | latex: string; |
| 515 | }; |
| 516 | /** Whether this appears to be a multi-index sequence */ |
| 517 | isMultiIndex: boolean; |
no test coverage detected