| 2737 | // Set a parameter to a real value. |
| 2738 | |
| 2739 | flag ExpSetR(int i, real r) |
| 2740 | { |
| 2741 | if (!FEnsureParVar(i+1)) |
| 2742 | return fFalse; |
| 2743 | xi.rgparVar[i].fReal = fTrue; |
| 2744 | xi.rgparVar[i].r = r; |
| 2745 | return fTrue; |
| 2746 | } |
| 2747 | |
| 2748 | |
| 2749 | // Set an AstroExpression macro to a string. |
no test coverage detected