MorphyLib
Phylogenetic data reconstruction library accommodating inapplicable data
fitch.h
1 //
2 // fitch.h
3 // MorPhy2
4 //
5 // Created by mbrazeau on 02/05/2017.
6 // Copyright © 2017 brazeaulab. All rights reserved.
7 //
8 
9 #ifndef fitch_h
10 #define fitch_h
11 
12 int mpl_fitch_downpass(MPLndsets* lset, MPLndsets* rset, MPLndsets* nset, MPLpartition* part);
13 
14 int mpl_fitch_uppass(MPLndsets* lset, MPLndsets* rset, MPLndsets* nset, MPLndsets* ancset, MPLpartition* part);
15 
16 int mpl_NA_fitch_first_downpass(MPLndsets* lset, MPLndsets* rset, MPLndsets* nset, MPLpartition* part);
17 
18 int mpl_NA_fitch_first_uppass(MPLndsets* lset, MPLndsets* rset, MPLndsets* nset, MPLndsets* ancset, MPLpartition* part);
19 
20 int mpl_NA_fitch_second_downpass(MPLndsets* lset, MPLndsets* rset, MPLndsets* nset, MPLpartition* part);
21 
22 int mpl_NA_fitch_second_uppass(MPLndsets* lset, MPLndsets* rset, MPLndsets* nset, MPLndsets* ancset, MPLpartition* part);
23 
24 int mpl_fitch_tip_update(MPLndsets* tset, MPLndsets* ancset, MPLpartition* part);
25 
26 int mpl_fitch_NA_tip_update(MPLndsets* tset, MPLndsets* ancset, MPLpartition* part);
27 
28 int mpl_fitch_NA_tip_finalize(MPLndsets* tset, MPLndsets* ancset, MPLpartition* part);
29 #endif /* fitch_h */
Definition: morphydefs.h:129
Definition: morphydefs.h:110