Loading...
Searching...
No Matches
Form1.cs
36 opt.Defines.Add("data", "\"" + Path.Combine(System.IO.Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location), @"..\..\..\..\Data\Markowitz.gdx") + "\"");
61 // a stack of intervals, where an interval is represented by a 2-tuple containing two data points
63 Stack<Tuple<Tuple<double, double>, Tuple<double, double>>> intervals = new Stack<Tuple<Tuple<double, double>, Tuple<double, double>>>();
GAMSModelInstance AddModelInstance(string modelInstanceName=null)
GAMSVariable GetVariable(string variableIdentifier)
GAMSParameter AddParameter(string identifier, int dimension, string explanatoryText="")
void Run(GAMSOptions gamsOptions=null, GAMSCheckpoint checkpoint=null, TextWriter output=null, Boolean createOutDB=true)
GAMSDatabase SyncDB
void Solve(SymbolUpdateType updateType=SymbolUpdateType.BaseCase, TextWriter output=null, GAMSModelInstanceOpt miOpt=null)
void Instantiate(string modelDefinition, params GAMSModifier[] modifiers)
Dictionary< string, string > Defines
double Value
new GAMSParameterRecord FindRecord(params string[] keys)
new GAMSParameterRecord FirstRecord()
new GAMSParameterRecord AddRecord(params string[] keys)
double Level
new GAMSVariableRecord FirstRecord()
GAMSJob AddJobFromString(string gamsSource, GAMSCheckpoint checkpoint=null, string jobName=null)
GAMSCheckpoint AddCheckpoint(string checkpointName=null)
GAMSOptions AddOptions(GAMSOptions optFrom=null)
This is a small graphical program that plots the efficient frontier of Markowitz' portfolio selection...
Definition: Form1.cs:24
Definition: Form1.cs:15