|
Last change
on this file was
19518,
checked in by westram, 3 months ago
|
- full update from 'trunk' into 'help'
- adds:
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
|
File size:
779 bytes
|
| Line | |
|---|
| 1 | /* |
|---|
| 2 | |
|---|
| 3 | PHYML : a program that computes maximum likelihood phylogenies from |
|---|
| 4 | DNA or AA homologous sequences |
|---|
| 5 | |
|---|
| 6 | Copyright (C) Stephane Guindon. Oct 2003 onward |
|---|
| 7 | |
|---|
| 8 | All parts of the source except where indicated are distributed under |
|---|
| 9 | the GNU public licence. See http://www.opensource.org for details. |
|---|
| 10 | |
|---|
| 11 | */ |
|---|
| 12 | |
|---|
| 13 | #ifndef CURR_H |
|---|
| 14 | #define CURR_H |
|---|
| 15 | |
|---|
| 16 | void Simu(arbre *tree,int n_step_max); |
|---|
| 17 | void Select_Edges_To_Swap(arbre *tree,edge **sorted_b,int *n_neg); |
|---|
| 18 | void Fix_All(arbre *tree); |
|---|
| 19 | void Update_Bl(arbre *tree,double fact); |
|---|
| 20 | void Make_N_Swap(arbre *tree,edge **b,int beg,int end); |
|---|
| 21 | int Make_Best_Swap(arbre *tree); |
|---|
| 22 | int Mov_Backward_Topo_Bl(arbre *tree,double lk_old,edge **tested_b,int n_tested); |
|---|
| 23 | void Unswap_N_Branch(edge **b,int beg,int end); |
|---|
| 24 | void Swap_N_Branch(edge **b,int beg,int end); |
|---|
| 25 | |
|---|
| 26 | #endif |
|---|
Note: See
TracBrowser
for help on using the repository browser.