libpll icon indicating copy to clipboard operation
libpll copied to clipboard

Phylogenetic Likelihood Library

Results 24 libpll issues
Sort by recently updated
recently updated
newest added

Implement a `pll_update_operations_minimal` that takes a list of operations and an integer _N_ and re-assigns `parent_clv_index`, `child1_clv_index` and `child2_clv_index` of all nodes in order to use the minimal amount _C_...

enhancement

It would be nice to have test cases for Win{32,64} and Mac. For example, something like ./runtest.py win64, which will use a cross-compiler (i.e. mingw) to build a PE file.

enhancement

Or is the library intended to only be compiled with asserts enabled? The really anal approach is to write: ``` assert(root != NULL); ``` as: ``` assert(root != NULL); if...

question