Skip to content

Commit

Permalink
MAINT: match new libiqtree function signatures
Browse files Browse the repository at this point in the history
  • Loading branch information
rmcar17 committed Sep 12, 2024
1 parent 8cb4353 commit b9ea67e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/piqtree2/_libiqtree/_piqtree2.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ extern string random_tree(int num_taxa, string tree_gen_mode, int num_trees, int

// Perform phylogenetic analysis on the input alignment (in string format)
// With estimation of the best topology
extern string build_tree(vector<string> names, vector<string> seqs, string model, int rand_seed = 0);
extern string build_tree(vector<string>& names, vector<string>& seqs, string model, int rand_seed = 0);

// Perform phylogenetic analysis on the input alignment (in string format)
// With restriction to the input toplogy
extern string fit_tree(vector<string> names, vector<string> seqs, string model, string intree, int rand_seed = 0);
extern string fit_tree(vector<string>& names, vector<string>& seqs, string model, string intree, int rand_seed = 0);

int mine(){
return 42;
Expand Down

0 comments on commit b9ea67e

Please sign in to comment.