/* CSC 101 Fall 2013 */ /* Alex Dekhtyar Lab 3 */ /* Grower's Grove Game */ /************************************/ /* estimated harvest quality test */ #include #include "grove.h" #include "checkit.h" int main(){ checkit_double(estimateQuality(3,3), 0.0001); checkit_double(estimateQuality(1,19),0.000032); checkit_double(estimateQuality(7,8), 0.004631); checkit_double(estimateQuality(9,9), 0.011339); checkit_double(estimateQuality(4,17), 0.000066); return(0); }