-
Notifications
You must be signed in to change notification settings - Fork 6
Frequently Asked Questions
Tomas Flouri edited this page Aug 1, 2016
·
4 revisions
Yes. libpll
is especially interesting for those projects where the intersection among the project's requirements and the features described in this wiki is not empty.
There are many different reasons why the calls might fail. pll_errno
and pll_errmsg
probably contain useful information about what happened.
An assertion may fail in the following cases:
- Make sure that you check the return values of the calls to the library. Perhaps something has failed before and it was ignored, and the
partition
instance is not consistent. - Make sure that you are not updating the library structures directly (e.g., partition->prop_invar[0] = 0.5). Some actions can break the consistency of the partition.
- There is also a (very very low) probability that there is an error in the library. If you have already verified the previous points, an assertion should never raise, so let us know such that we can fix it.