/* CSC 101                Fall 2013 */
/* Alex Dekhtyar           Lab 3    */
/*              Grower's Grove Game */
/************************************/

/*estimated harvest yield test */


#include <stdio.h>
#include "grove.h"
#include "checkit.h"

int main(){


checkit_double(estimateYield(3,3), 0.023697  );
checkit_double(estimateYield(1,19),0.067322 );
checkit_double(estimateYield(7,8),  20.165240 );
checkit_double(estimateYield(12,3),  0.007501);
checkit_double(estimateYield(4,17), 2.371061);



return(0);
}