Files
yenru0 901757b211 Add 'labs/' from commit '58cd0413b229aea4bad859401adb7f4cb8f4474d'
git-subtree-dir: labs
git-subtree-mainline: 4d409d3106
git-subtree-split: 58cd0413b2
2025-09-18 15:31:05 +09:00

33 lines
1022 B
C

/*
* CSE4009 Assignment 1 - Data Lab
*/
/* Declare different function types */
typedef int (*funct_t) (void);
typedef int (*funct1_t)(int);
typedef int (*funct2_t)(int, int);
typedef int (*funct3_t)(int, int, int);
/* Combine all the information about a function and its tests as structure */
typedef struct {
char *name; /* String name */
funct_t solution_funct; /* Function */
funct_t test_funct; /* Test function */
int args; /* Number of function arguments */
char *ops; /* List of legal operators. Special case: "$" for floating point */
int op_limit; /* Max number of ops allowed in solution */
int rating; /* Problem rating (1 -- 4) */
int arg_ranges[3][2]; /* Argument ranges. Always defined for 3 args, even if */
/* the function takes fewer. Special case: First arg */
/* must be set to {1,1} for f.p. puzzles */
} test_rec, *test_ptr;
extern test_rec test_set[];