/******************************************************** Mosel Library Example Problems ============================== file foliorun.c ``````````````` Loading and running a BIM file. (c) 2008 Fair Isaac Corporation author: S.Heipcke, Aug. 2003 ********************************************************/ #include #include "xprm_rt.h" int main(int argc, char *argv[]) { XPRMmodel model; int result; XPRMinit(); /* Initialize Mosel */ model = XPRMloadmod("foliodata.bim", NULL); /* Load compiled model */ XPRMrunmod(model, &result, NULL); XPRMunloadmod(model); return 0; }