7 * Created by Sarah Westcott on 1/8/09.
8 * Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
12 /* This class implements the SharedAce estimator on two groups.
13 It is a child of the calculator class. */
15 #include "calculator.h"
17 /***********************************************************************/
19 class SharedAce : public Calculator {
22 SharedAce(int n=10) : abund(n), Calculator("sharedace", 1, false) {};
23 EstOutput getValues(SAbundVector*) {return data;};
24 EstOutput getValues(vector<SharedRAbundVector*>);
29 /***********************************************************************/