This release adds access to the results of the Linear Noise Approximation Task. (it requires an `python-copasi > 4.44`). For an example of running the task see the:
* [LNA Task Example](https://basico.readthedocs.io/en/latest/notebooks/LinearNoiseApproximation.html)
Generally, the LNA is computed runing `run_lna` the optional argument `return_results` (default `False`) indicates whether the full result is returned, or only the status of the computation. To retrieve the results after a computation of the LNA the following methods may be used:
* `get_lna_status` returns the status of the last computation
* `get_lna_covariance_matrix` returns the full covariance matrix
* `get_lna_reduced_covariance_matrix` returns the reduced covariance matrix
* `get_lna_reduced_b_matrix` returns the reduced b Matrix
* `get_lna_solution` returns the tuple: `(status, covariance matrix, reduced covariance matrix, reduced b matrix)`