| |||||||||||
| |||||||||||
|
Folio - Embedding examples from 'Getting started' Description Simple embedding tasks for a portfolio optimization problem:
Source Files By clicking on a file name, a preview is opened at the bottom of this page. Data Files foliorun.c
/********************************************************
Mosel Library Example Problems
==============================
file foliorun.c
```````````````
Loading and running a BIM file.
(c) 2008 Fair Isaac Corporation
author: S.Heipcke, Aug. 2003
********************************************************/
#include <stdio.h>
#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;
}
| |||||||||||
| © Copyright 2025 Fair Isaac Corporation. |