/******************************************************** Mosel User Guide Example Problems ================================= file ugcompmem.cs ````````````````` Compiling a model to memory. (c) 2013 Fair Isaac Corporation author: S.Heipcke, Mar. 2013 ********************************************************/ using System; using System.IO; using Mosel; namespace ugcompmem.cs { public class ugcompmem { /// /// Main entry point for the application /// [STAThread] static void Main(string[] args) { // Initialize Mosel XPRM mosel = XPRM.Init(); // Compile and load the Mosel model XPRMModel model = mosel.CompileAndLoad("burglar2.mos"); // Run the model model.Run(); } } }