
let rubric_version = "1.5"
let rubric_title = "CS421 Summer 2009 MP1"


(**************************************************************************
 * You can add new test cases by adding new elements to the following lists
 * Format is:
 * TEST<X>ARG(<weight>, <function_name>, <arg1>, <arg2>, ..., <argX>)
 *
 * <X> is the number of argument that the function being tested takes.
 **************************************************************************)

(* This list is for regular problems *)
let rubric =
[
     TEST0ARG(1, x) ;
     TEST0ARG(1, y) ;
     TEST1ARG(1, square_minus_x, 10) ;
     TEST1ARG(1, square_plus_y, 10.0) ; 
     TEST2ARG(1, abs_largest, 3, (-5)) ;
     TEST1ARG(1, greetings, "Kirill") ;
     TEST2ARG(1, triple_the_fun, (fun n -> n * 2), 2) 
]
(* Note: the last entry should not be followed by a semicolon. *)

let extra_rubric = [ ]
