/******************************************************** Mosel Library Example Problems ============================== file foliorun.cs ```````````````` Loading and running a BIM file. (c) 2009 Fair Isaac Corporation author: J.Farmer, Jun. 2009 ********************************************************/ using System; using Mosel; namespace mosel_getting_started { public class foliorun { public static void Main(string[] args) { XPRM mosel; XPRMModel mod; mosel = XPRM.Init(); // Initialize Mosel mod = mosel.LoadModel("foliodata.bim"); // Load compiled model mod.Run(); Console.WriteLine("`foliodata' returned: " + mod.Result); } } }