![]() | |||||||||
| |||||||||
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 folioexec.java /******************************************************** Mosel Library Example Problems ============================== file folioexec.java ``````````````````` Compiling, loading and running a model file. (c) 2008 Fair Isaac Corporation author: S.Heipcke, Mar. 2006 ********************************************************/ import com.dashoptimization.*; public class folioexec { public static void main(String[] args) throws Exception { XPRM mosel; XPRMModel mod; mosel = new XPRM(); // Initialize Mosel mosel.compile("foliodata.mos"); // Compile the model mod = mosel.loadModel("foliodata.bim"); // Load compiled model mod.run(); // Run the model System.out.println("`foliodata' returned: " + mod.getResult()); } }
| |||||||||
© Copyright 2024 Fair Isaac Corporation. |