Exemplo n.º 1
0
        public MainProgram()
        {
            #region Set Dependencies

            trstlp = new TRSTLP();
            calcfc = new CALCFC(Default);
            cobylb = new COBYLB(calcfc, trstlp);
            cobyla = new COBYLA(cobylb);
            cobylatest = new COBYLATEST(cobyla, Default);

            #endregion
        }
Exemplo n.º 2
0
        public COBYLA(CALCFC calcfc)
        {
            #region Initialization Common Blocks

            CommonBlock Default = new CommonBlock(0, 1, 0, 0);
            #endregion
            #region Dependencies (Initialization)

            TRSTLP trstlp = new TRSTLP();
            //CALCFC calcfc = new CALCFC(Default);
            COBYLB cobylb = new COBYLB(calcfc, trstlp);
            #endregion
            #region Set Dependencies

            this._cobylb = cobylb;
            #endregion
        }
Exemplo n.º 3
0
        public COBYLATEST()
        {
            #region Initialization Common Blocks

            CommonBlock Default = new CommonBlock(0, 1, 0, 0);
            #endregion
            #region Dependencies (Initialization)

            TRSTLP trstlp = new TRSTLP();
            CALCFC calcfc = new CALCFC(Default);
            COBYLB cobylb = new COBYLB(calcfc, trstlp);
            COBYLA cobyla = new COBYLA(cobylb);
            #endregion
            #region Set Dependencies

            this._cobyla = cobyla;
            #endregion
            #region Common varaible Initialization

            #region Common Block: Default Initialization

            this._default = Default;
            NPROB = Default.intData[0];
            #endregion
            #endregion
        }
Exemplo n.º 4
0
        public COBYLB(CALCFC calcfc, TRSTLP trstlp)
        {
            #region Set Dependencies

            this._calcfc = calcfc; this._trstlp = trstlp;
            #endregion
        }