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

/* sun exposure test */


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


int main(){


checkit_double(sunExposure(3,3),  0.000870);
checkit_double(sunExposure(1,19),  0.006426);
checkit_double(sunExposure(7,8),  1.920499);
checkit_double(sunExposure(12,3), 0.001364);
checkit_double(sunExposure(4,17), 0.368832);


return(0);
}