X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=parsimony.h;h=d4f71abb9511b71f96fbdd4cbc11b080117db364;hb=b8f3e71c8a0310e25261464d27e6fcfe891483b0;hp=b5d7e209c415274020f4d359a35bbcdf374d8383;hpb=d037597badc8d18e235c59f0c1114180edb7f98f;p=mothur.git diff --git a/parsimony.h b/parsimony.h index b5d7e20..d4f71ab 100644 --- a/parsimony.h +++ b/parsimony.h @@ -13,6 +13,7 @@ #include "treecalculator.h" #include "treemap.h" +#include "globaldata.hpp" /***********************************************************************/ @@ -22,11 +23,16 @@ class Parsimony : public TreeCalculator { Parsimony(TreeMap* t) : tmap(t) {}; ~Parsimony() {}; EstOutput getValues(Tree*); + EstOutput getValues(Tree*, string, string) { return data; }; private: + GlobalData* globaldata; + Tree* copyTree; EstOutput data; TreeMap* tmap; + map::iterator it; }; /***********************************************************************/ -#endif \ No newline at end of file + +#endif