root/applications/robust/main.cpp @ 1366

Revision 1366, 20.6 kB (checked in by sindj, 13 years ago)

Jupiijahou, snad se podarilo dobojovat s normalizacnim faktorem. Pridany vsechny potrebne logaritmy do log_nc. JS

Line 
1
2/*!
3\file
4\brief Robust
5\author Vasek Smidl
6
7 */
8
9#include "estim/arx.h"
10#include "robustlib.h"
11#include <vector>
12#include <iostream>
13#include <fstream>
14#include <itpp/itsignal.h>
15#include "windows.h"
16#include "ddeml.h"
17#include "stdio.h"
18
19//#include "DDEClient.h"
20//#include <conio.h>
21
22
23using namespace itpp;
24using namespace bdm;
25
26//const int emlig_size = 2;
27//const int utility_constant = 5;
28
29const int max_model_order = 2;
30
31
32
33HDDEDATA CALLBACK DdeCallback(
34        UINT uType,     // Transaction type.
35        UINT uFmt,      // Clipboard data format.
36        HCONV hconv,    // Handle to the conversation.
37        HSZ hsz1,       // Handle to a string.
38        HSZ hsz2,       // Handle to a string.
39        HDDEDATA hdata, // Handle to a global memory object.
40        DWORD dwData1,  // Transaction-specific data.
41        DWORD dwData2)  // Transaction-specific data.
42{
43        return 0;
44}
45
46void DDERequest(DWORD idInst, HCONV hConv, char* szItem)
47{
48        HSZ hszItem = DdeCreateStringHandle(idInst, szItem, 0);
49        HDDEDATA hData = DdeClientTransaction(NULL,0,hConv,hszItem,CF_TEXT, 
50                                                                        XTYP_ADVSTART,TIMEOUT_ASYNC , NULL); //TIMEOUT_ASYNC
51        if (hData==NULL)
52        {
53                printf("Request failed: %s\n", szItem);
54        }
55
56        if (hData==0)
57        {
58                printf("Request failed: %s\n", szItem);
59        }
60}
61
62class model
63{
64       
65
66public:
67        list<pair<int,int>> ar_components;
68
69        // Best thing would be to inherit the two models from a single souce, this is planned, but now structurally
70        // problematic.
71        RARX* my_rarx;
72        ARXwin* my_arx;
73
74        bool has_constant;
75        int  window_size;
76        int  predicted_channel;
77        mat* data_matrix;
78       
79        model(list<pair<int,int>> ar_components, 
80                  bool robust, 
81                  bool has_constant, 
82                  int window_size, 
83                  int predicted_channel,
84                  mat* data_matrix)
85        {
86                this->ar_components.insert(this->ar_components.begin(),ar_components.begin(),ar_components.end());
87                this->has_constant      = has_constant;
88                this->window_size       = window_size;
89                this->predicted_channel = predicted_channel;
90                this->data_matrix       = data_matrix;
91
92                if(robust)
93                {
94                        if(has_constant)
95                        {
96                                my_rarx = new RARX(ar_components.size()+1,window_size,true);
97                                my_arx  = NULL;
98                        }
99                        else
100                        {
101                                my_rarx = new RARX(ar_components.size(),window_size,false);
102                                my_arx  = NULL;
103                        }
104                }
105                else
106                {
107                        my_rarx = NULL;
108                        my_arx  = new ARXwin();
109                        mat V0;
110
111                        if(has_constant)
112                        {                               
113                                V0  = 0.01 * eye(ar_components.size()+2);
114                                V0(0,0) = 1;
115                                my_arx->set_constant(true);     
116                               
117                        }
118                        else
119                        {
120                               
121                                V0  = 0.01 * eye(ar_components.size()+1);
122                                V0(0,0) = 1;
123                                my_arx->set_constant(false);                           
124                               
125                        }
126
127                        my_arx->set_statistics(1, V0); 
128                        my_arx->set_parameters(window_size);
129                        my_arx->validate();
130                }
131        }
132
133        void data_update(int time)
134        {
135                vec data_vector;
136                for(list<pair<int,int>>::iterator ar_iterator = ar_components.begin();ar_iterator!=ar_components.end();ar_iterator++)
137                {
138                        data_vector.ins(data_vector.size(),(*data_matrix).get(ar_iterator->first,time-ar_iterator->second));
139                }
140
141                if(my_rarx!=NULL)
142                {
143                        data_vector.ins(0,(*data_matrix).get(predicted_channel,time));
144                        my_rarx->bayes(data_vector);
145                }
146                else
147                {
148                        vec pred_vec;
149                        pred_vec.ins(0,(*data_matrix).get(predicted_channel,time));
150                        my_arx->bayes(pred_vec,data_vector);
151                }
152        }
153
154        static list<list<pair<int,int>>> possible_models_recurse(int max_order,int number_of_channels)
155        {
156                list<list<pair<int,int>>> created_model_types;         
157
158                if(max_order == 1)
159                {                       
160                        for(int channel = 0;channel<number_of_channels;channel++)
161                        {
162                                list<pair<int,int>> returned_type;
163                                returned_type.push_back(pair<int,int>(channel,1));
164                                created_model_types.push_back(returned_type);
165                        }
166
167                        return created_model_types;
168                }
169                else
170                {
171                        created_model_types = possible_models_recurse(max_order-1,number_of_channels);
172                        list<list<pair<int,int>>> returned_types;
173                       
174                        for(list<list<pair<int,int>>>::iterator model_ref = created_model_types.begin();model_ref!=created_model_types.end();model_ref++)
175                        {                               
176                               
177                                for(int order = 1; order<=max_order; order++)
178                                {
179                                        for(int channel = 0;channel<number_of_channels;channel++)
180                                        {
181                                                list<pair<int,int>> returned_type;
182                                                pair<int,int> new_pair = pair<int,int>(channel,order);
183                                                if(find((*model_ref).begin(),(*model_ref).end(),new_pair)==(*model_ref).end())
184                                                {
185                                                        returned_type.insert(returned_type.begin(),(*model_ref).begin(),(*model_ref).end());
186                                                        returned_type.push_back(new_pair);
187                                                        returned_types.push_back(returned_type);                                                       
188                                                }
189                                        }
190                                }
191                        }
192
193                        created_model_types.insert(created_model_types.end(),returned_types.begin(),returned_types.end());
194
195                        return created_model_types;
196                }               
197        }
198};
199
200
201
202
203int main ( int argc, char* argv[] ) {
204       
205        itpp::Laplace_RNG LapRNG = Laplace_RNG();       
206       
207        /*
208        char szApp[] = "MT4";
209        char szTopic[] = "BID";
210        char szItem1[] = "EURJPY";     
211
212        //DDE Initialization
213        DWORD idInst=0;
214        UINT iReturn;
215        iReturn = DdeInitialize(&idInst, (PFNCALLBACK)DdeCallback,
216                                                        APPCLASS_STANDARD | APPCMD_CLIENTONLY, 0 );
217        if (iReturn!=DMLERR_NO_ERROR)
218        {
219                printf("DDE Initialization Failed: 0x%04x\n", iReturn);
220                Sleep(1500);
221                return 0;
222        }
223
224        /*
225        //Start DDE Server and wait for it to become idle.
226        HINSTANCE hRet = ShellExecute(0, "open", szTopic, 0, 0, SW_SHOWNORMAL);
227        if ((int)hRet < 33)
228        {
229                printf("Unable to Start DDE Server: 0x%04x\n", hRet);
230                Sleep(1500); DdeUninitialize(idInst);
231                return 0;
232        }
233        Sleep(1000);
234        */
235
236        /*
237        //DDE Connect to Server using given AppName and topic.
238        HSZ hszApp, hszTopic;
239        HCONV hConv;
240        hszApp = DdeCreateStringHandle(idInst, szApp, 0);
241        hszTopic = DdeCreateStringHandle(idInst, szTopic, 0);
242        hConv = DdeConnect(idInst, hszApp, hszTopic, NULL);
243        DdeFreeStringHandle(idInst, hszApp);
244        DdeFreeStringHandle(idInst, hszTopic);
245        if (hConv == NULL)
246        {
247                printf("DDE Connection Failed.\n");
248                Sleep(1500); DdeUninitialize(idInst);
249                return 0;
250        }
251
252        //Execute commands/requests specific to the DDE Server.
253       
254        DDERequest(idInst, hConv, szItem1);     
255       
256        //DDE Disconnect and Uninitialize.
257        //DdeDisconnect(hConv);
258        //DdeUninitialize(idInst);
259
260        Sleep(300000);
261        Sleep(3000);
262       
263
264        /*
265        // EXPERIMENT: 100 AR model generated time series of length of 30 from y_t=0.95*y_(t-1)+0.05*y_(t-2)+0.2*e_t,
266        // where e_t is normally, student(4) and cauchy distributed are tested using robust AR model, to obtain the
267        // variance of location parameter estimators and compare it to the classical setup.
268        vector<vector<vector<string>>> string_lists;
269        string_lists.push_back(vector<vector<string>>());
270        string_lists.push_back(vector<vector<string>>());
271        string_lists.push_back(vector<vector<string>>());
272
273        char* file_strings[3] = {"c:\\ar_normal.txt", "c:\\ar_student.txt", "c:\\ar_cauchy.txt"};
274       
275
276        for(int i = 0;i<3;i++)
277        {       
278                ifstream myfile(file_strings[i]);
279                if (myfile.is_open())
280                {
281                        while ( myfile.good() )
282                        {
283                                string line;
284                                getline(myfile,line);
285                               
286                                vector<string> parsed_line;
287                                while(line.find(',') != string::npos)
288                                {
289                                        int loc = line.find(',');
290                                        parsed_line.push_back(line.substr(0,loc));
291                                        line.erase(0,loc+1);                                   
292                                }                               
293
294                                string_lists[i].push_back(parsed_line);
295                        }
296                        myfile.close();
297                }
298        }
299
300        for(int j = 0;j<string_lists.size();j++)
301        {
302               
303                for(int i = 0;i<string_lists[j].size()-1;i++)
304                {
305                        vector<vec> conditions;
306                        //emlig* emliga = new emlig(2);
307                        RARX* my_rarx = new RARX(2,30);
308
309                        for(int k = 1;k<string_lists[j][i].size();k++)
310                        {
311                                vec condition;
312                                //condition.ins(0,1);                           
313                                condition.ins(0,string_lists[j][i][k]);                         
314                                conditions.push_back(condition);
315
316                                //cout << "orig:" << condition << endl;
317
318                                if(conditions.size()>1)
319                                {               
320                                        conditions[k-2].ins(0,string_lists[j][i][k]);
321                                       
322                                }
323
324                                if(conditions.size()>2)
325                                {
326                                        conditions[k-3].ins(0,string_lists[j][i][k]);
327
328                                        //cout << "modi:" << conditions[k-3] << endl;
329
330                                        my_rarx->bayes(conditions[k-3]);
331
332                                       
333                                        //if(k>5)
334                                        //{
335                                        //      cout << "MaxLik coords:" << emliga->minimal_vertex->get_coordinates() << endl;
336                                        //}
337                                       
338                                }                               
339                               
340                        }
341
342                        //emliga->step_me(0);
343                        /*
344                        ofstream myfile;
345                        myfile.open("c:\\robust_ar1.txt",ios::app);
346                        myfile << my_rarx->minimal_vertex->get_coordinates()[0] << ";";
347                        myfile.close();
348
349                        myfile.open("c:\\robust_ar2.txt",ios::app);
350                        myfile << emliga->minimal_vertex->get_coordinates()[1] << ";";
351                        myfile.close();
352                       
353
354                        cout << "MaxLik coords:" << emliga->minimal_vertex->get_coordinates() << endl;
355                        cout << "Step: " << i << endl;
356                }
357
358                cout << "One experiment finished." << endl;
359
360                ofstream myfile;
361                myfile.open("c:\\robust_ar1.txt",ios::app);
362                myfile << endl;
363                myfile.close();
364
365                myfile.open("c:\\robust_ar2.txt",ios::app);
366                myfile << endl;
367                myfile.close();
368        }*/
369   
370
371       
372        // EXPERIMENT: A moving window estimation and prediction of RARX is tested on data generated from
373    // y_t=0.95*y_(t-1)+0.05*y_(t-2)+0.2*e_t, where e_t is normally, student(4) and cauchy distributed. It
374    // can be compared to the classical setup.
375       
376
377       
378        vector<vector<string>> strings;
379
380        char* file_string = "c:\\dataCDClosePercDiff"; 
381
382        char dfstring[80];
383        strcpy(dfstring,file_string);
384        strcat(dfstring,".txt");
385               
386       
387        mat data_matrix;
388        ifstream myfile(dfstring);
389        if (myfile.is_open())
390        {               
391                string line;
392                while(getline(myfile,line))
393                {                       
394                        vec data_vector;
395                        while(line.find(',') != string::npos)
396                        {
397                                int loc2 = line.find('\n');
398                                int loc  = line.find(',');
399                                data_vector.ins(data_vector.size(),atof(line.substr(0,loc).c_str()));                           
400                                line.erase(0,loc+1);                                   
401                        }
402
403                        data_matrix.ins_row(data_matrix.rows(),data_vector);
404                }               
405
406                myfile.close(); 
407        }
408        else
409        {
410                cout << "Can't open data file!" << endl;
411        }
412       
413
414        list<list<pair<int,int>>> model_types = model::possible_models_recurse(max_model_order,data_matrix.rows());
415       
416        list<model*> models;
417        for(list<list<pair<int,int>>>::iterator model_type = model_types.begin();model_type!=model_types.end();model_type++)
418        {
419                models.push_back(new model((*model_type),true,true,100,0,&data_matrix));
420                models.push_back(new model((*model_type),false,true,100,0,&data_matrix));
421                models.push_back(new model((*model_type),true,false,100,0,&data_matrix));
422                models.push_back(new model((*model_type),false,false,100,0,&data_matrix));
423        }
424       
425        mat result_lognc;
426
427        for(int time = max_model_order;time<data_matrix.cols();time++) //time<data_matrix.cols()
428        {       
429                vec cur_res_lognc;
430
431                for(list<model*>::iterator model_ref = models.begin();model_ref!=models.end();model_ref++)
432                {
433                        (*model_ref)->data_update(time);
434                        if((*model_ref)->my_rarx!=NULL)
435                        {
436                                cur_res_lognc.ins(cur_res_lognc.size(),(*model_ref)->my_rarx->posterior->log_nc);
437                        }
438                        else
439                        {
440                                cur_res_lognc.ins(cur_res_lognc.size(),(*model_ref)->my_arx->posterior().lognc());
441                        }
442                }
443
444                result_lognc.ins_col(result_lognc.cols(),cur_res_lognc);
445
446                cout << "Updated." << endl;
447       
448                /*
449                vector<vec> conditions;
450                //emlig* emliga = new emlig(2);
451                RARX* my_rarx = new RARX(2,10,false);
452               
453               
454                mat V0 = 0.0001 * eye ( 3 );
455                ARX* my_arx = new ARX(0.85);
456                my_arx->set_statistics ( 1, V0 ); //nu is default (set to have finite moments)
457                my_arx->set_constant ( false );
458                my_arx->validate();
459               
460
461                for(int k = 1;k<strings[j].size();k++)
462                {
463                        vec condition;
464                        //condition.ins(0,1);                           
465                        condition.ins(0,strings[j][k]);                         
466                        conditions.push_back(condition);
467
468                        //cout << "orig:" << condition << endl;
469
470                        if(conditions.size()>1)
471                        {               
472                                conditions[k-2].ins(0,strings[j][k]);
473                                       
474                        }
475
476                        if(conditions.size()>2)
477                        {
478                                conditions[k-3].ins(0,strings[j][k]);
479
480                                // cout << "Condition:" << conditions[k-3] << endl;
481
482                                my_rarx->bayes(conditions[k-3]);
483                                //my_rarx->posterior->step_me(1);
484                               
485                                vec cond_vec;
486                                cond_vec.ins(0,conditions[k-3][0]);
487                               
488                                my_arx->bayes(cond_vec,conditions[k-3].right(2));
489                                       
490                                /*
491                                if(k>8)
492                                {
493                                        //my_rarx->posterior->step_me(0);
494
495                                        //mat samples = my_rarx->posterior->sample_mat(10);
496
497                                        pair<vec,mat> imp_samples = my_rarx->posterior->importance_sample(1000);
498
499                                        //cout << imp_samples.first << endl;
500                                       
501                                        vec sample_prediction;
502                                        vec averaged_params = zeros(imp_samples.second.rows());
503                                        for(int t = 0;t<imp_samples.first.size();t++)
504                                        {
505                                                vec lap_sample = conditions[k-3].left(2);
506                                                //lap_sample.ins(lap_sample.size(),1.0);
507                                               
508                                                lap_sample.ins(0,LapRNG());
509
510                                                sample_prediction.ins(0,lap_sample*imp_samples.second.get_col(t));
511
512                                                averaged_params += imp_samples.first[t]*imp_samples.second.get_col(t);
513                                        }
514
515                                        averaged_params = averaged_params*(1/(imp_samples.first*ones(imp_samples.first.size())));
516
517                                        // cout << "Averaged estimated parameters: " << averaged_params << endl;
518                                       
519                                        vec sample_pow = sample_prediction;                                     
520                                       
521                                        // cout << sample_prediction << endl;
522                                        vec poly_coefs;
523                                        double prediction;
524                                        bool stop_iteration = false;
525                                        int en = 1;
526                                        do
527                                        {
528                                                double poly_coef = imp_samples.first*sample_pow/(imp_samples.first*ones(imp_samples.first.size()));
529
530                                                if(en==1)
531                                                {
532                                                        prediction = poly_coef;
533                                                }
534
535                                                poly_coef = poly_coef*en*fact(utility_constant-2+en)/fact(utility_constant-2);
536
537                                                if(abs(poly_coef)>numeric_limits<double>::epsilon())
538                                                {
539                                                        sample_pow = elem_mult(sample_pow,sample_prediction);
540                                                        poly_coefs.ins(0,pow(-1.0,en+1)*poly_coef);
541                                                }
542                                                else
543                                                {
544                                                        stop_iteration = true;
545                                                }
546                                               
547                                                en++;
548
549                                                if(en>20)
550                                                {
551                                                        stop_iteration = true;
552                                                }
553                                        }
554                                        while(!stop_iteration);
555
556                                        /*
557                                        ofstream myfile_coef;                                           
558
559                                        myfile_coef.open("c:\\coefs.txt",ios::app);
560                                       
561                                        for(int t = 0;t<poly_coefs.size();t++)
562                                        {
563                                                myfile_coef << poly_coefs[t] << ",";                                   
564                                        }
565
566                                        myfile_coef << endl;
567                                        myfile_coef.close();
568                                        */
569
570                                        //cout << "Coefficients: " << poly_coefs << endl;
571                                                                               
572                                        /*
573                                        vec bas_coef = vec("1.0 2.0 -8.0");
574                                        cout << "Coefs: " << bas_coef << endl;
575                                        cvec actions2 = roots(bas_coef);
576                                        cout << "Roots: " << actions2 << endl;
577                                        */
578                                       
579                                    /*
580
581                                        cvec actions = roots(poly_coefs);
582                                       
583
584                                        bool is_max = false;
585                                        for(int t = 0;t<actions.size();t++)
586                                        {
587                                                if(actions[t].imag() == 0)
588                                                {
589                                                        double second_derivative = 0;
590                                                        for(int q = 1;q<poly_coefs.size();q++)
591                                                        {
592                                                                second_derivative+=poly_coefs[q]*pow(actions[t].real(),q-1)*q;
593                                                        }
594
595                                                        if(second_derivative<0)
596                                                        {
597                                                                cout << "Action:" << actions[t].real() << endl;
598
599                                                                is_max = true;
600                                                        }
601                                                }
602                                        }
603
604                                        if(!is_max)
605                                        {
606                                                cout << "No maximum." << endl;
607                                        }
608
609                                        // cout << "MaxLik coords:" << my_rarx->posterior->minimal_vertex->get_coordinates() << endl;
610
611                                        /*
612                                        double prediction = 0;
613                                        for(int s = 1;s<samples.rows();s++)
614                                        {
615                                               
616                                                double avg_parameter = imp_samples.get_row(s)*ones(samples.cols())/samples.cols();
617
618                                                prediction += avg_parameter*conditions[k-3][s-1];
619
620                                               
621                                               
622                                                /*
623                                                ofstream myfile;
624                                                char fstring[80];
625                                                strcpy(fstring,file_strings[j]);
626
627                                                char es[5];
628                                                strcat(fstring,itoa(s,es,10));
629
630                                                strcat(fstring,"_res.txt");
631                                               
632
633                                                myfile.open(fstring,ios::app);
634                                               
635                                                //myfile << my_rarx->posterior->minimal_vertex->get_coordinates()[0];
636                                                myfile << avg_parameter;
637                                               
638                                                if(k!=strings[j].size()-1)
639                                                {
640                                                        myfile << ",";
641                                                }
642                                                else
643                                                {
644                                                        myfile << endl;
645                                                }
646                                                myfile.close();
647                                                */
648
649                                       
650                                        //}
651
652                                        // cout << "Prediction: "<< prediction << endl;
653                                        /*
654                                        enorm<ldmat>* pred_mat = my_arx->epredictor(conditions[k-3].left(2));
655                                        double prediction2 = pred_mat->mean()[0];
656                                        */
657
658                                       
659                                        ofstream myfile;
660                                        char fstring[80];                                       
661                                        strcpy(fstring,file_string);
662                                       
663                                        strcat(fstring,"lognc.txt");                                   
664
665                                        myfile.open(fstring,ios::app);
666                                       
667                                        // myfile << my_rarx->posterior->minimal_vertex->get_coordinates()[0];
668                                       
669                                        for(int i = 0;i<cur_res_lognc.size();i++)
670                                        {
671                                                myfile << cur_res_lognc[i] << ',';
672                                        }
673
674                                        myfile << endl;                         
675                                       
676                                        myfile.close();
677                        }
678                                        /*
679                                        myfile.open(f2string,ios::app);
680                                        myfile << prediction2;
681                                       
682                                        if(k!=strings[j].size()-1)
683                                        {
684                                                myfile << ",";
685                                        }
686                                        else
687                                        {
688                                                myfile << endl;
689                                        }
690                                        myfile.close();
691                                        //*//*
692
693                                }                                       
694                        }       */
695                       
696                        //emliga->step_me(0);
697                        /*
698                        ofstream myfile;
699                        myfile.open("c:\\robust_ar1.txt",ios::app);
700                        myfile << my_rarx->minimal_vertex->get_coordinates()[0] << ";";
701                        myfile.close();
702
703                        myfile.open("c:\\robust_ar2.txt",ios::app);
704                        myfile << emliga->minimal_vertex->get_coordinates()[1] << ";";
705                        myfile.close();
706                       
707
708                        cout << "MaxLik coords:" << emliga->minimal_vertex->get_coordinates() << endl;
709                        cout << "Step: " << i << endl;*/
710                //}
711
712
713        //}
714
715
716        // EXPERIMENT: One step ahead price prediction. Comparison of classical and robust model using optimal trading
717    //             with maximization of logarithm of one-step ahead wealth.
718
719       
720               
721                /*
722                cout << "One experiment finished." << endl;
723
724                ofstream myfile;
725                myfile.open("c:\\robust_ar1.txt",ios::app);
726                myfile << endl;
727                myfile.close();
728
729                myfile.open("c:\\robust_ar2.txt",ios::app);
730                myfile << endl;
731                myfile.close();*/
732       
733
734        //emlig* emlig1 = new emlig(emlig_size);
735
736        //emlig1->step_me(0);
737        //emlig* emlig2 = new emlig(emlig_size);
738       
739        /*
740        emlig1->set_correction_factors(4);
741
742        for(int j = 0;j<emlig1->correction_factors.size();j++)
743        {
744                for(set<my_ivec>::iterator vec_ref = emlig1->correction_factors[j].begin();vec_ref!=emlig1->correction_factors[j].end();vec_ref++)
745                {
746                        cout << j << "    ";
747                       
748                        for(int i=0;i<(*vec_ref).size();i++)
749                        {
750                                cout << (*vec_ref)[i];
751                        }
752
753                        cout << endl;
754                }
755        }*/
756       
757        /*
758    vec condition5 = "1.0 1.0 1.01";//"-0.3 1.7 1.5";
759
760        emlig1->add_condition(condition5);
761        //emlig1->step_me(0);
762
763
764        vec condition1a = "-1.0 1.02 0.5";
765        //vec condition1b = "1.0 1.0 1.01";
766        emlig1->add_condition(condition1a);
767        //emlig2->add_condition(condition1b);
768
769        vec condition2a = "-0.3 1.7 1.5";
770        //vec condition2b = "-1.0 1.0 1.0";
771        emlig1->add_condition(condition2a);
772        //emlig2->add_condition(condition2b);
773
774        vec condition3a = "0.5 -1.01 1.0";
775        //vec condition3b = "0.5 -1.01 1.0";
776
777        emlig1->add_condition(condition3a);
778        //emlig2->add_condition(condition3b);   
779
780        vec condition4a = "-0.5 -1.0 1.0";
781        //vec condition4b = "-0.5 -1.0 1.0";   
782
783        emlig1->add_condition(condition4a);
784        //cout << "************************************************" << endl;
785        //emlig2->add_condition(condition4b);
786        //cout << "************************************************" << endl;
787       
788        //cout << emlig1->minimal_vertex->get_coordinates();
789       
790        //emlig1->remove_condition(condition3a);
791        //emlig1->step_me(0);
792        //emlig1->remove_condition(condition2a);
793        //emlig1->remove_condition(condition1a);
794        //emlig1->remove_condition(condition5);
795       
796
797        //emlig1->step_me(0);
798        //emlig2->step_me(0);
799       
800
801        // DA SE POUZIT PRO VYPIS DO SOUBORU
802        // emlig1->step_me(0);
803
804        //emlig1->remove_condition(condition1);
805       
806       
807
808       
809       
810        /*
811        for(int i = 0;i<100;i++)
812        {
813                cout << endl << "Step:" << i << endl;           
814
815                double condition[emlig_size+1];         
816
817                for(int k = 0;k<=emlig_size;k++)
818                {
819                        condition[k] = (rand()-RAND_MAX/2)/1000.0;             
820                }
821                       
822
823                vec* condition_vec = new vec(condition,emlig_size+1);
824                emlig1->add_condition(*condition_vec);
825
826                /*
827                for(polyhedron* toprow_ref = emlig1->statistic.rows[emlig_size]; toprow_ref != emlig1->statistic.end_poly; toprow_ref = toprow_ref->next_poly)
828                {
829                        cout << ((toprow*)toprow_ref)->probability << endl;
830                }
831                */
832                /*
833                cout << emlig1->statistic_rowsize(emlig_size) << endl << endl;
834       
835                /*
836                if(i-emlig1->number_of_parameters >= 0)
837                {
838                        pause(30);
839                }
840                */
841
842                // emlig1->step_me(i);
843               
844                /*
845                vector<int> sizevector;
846                for(int s = 0;s<=emlig1->number_of_parameters;s++)
847                {
848                        sizevector.push_back(emlig1->statistic_rowsize(s));
849                }
850                */
851        //}
852   
853
854
855       
856        /*
857        emlig1->step_me(1);
858
859        vec condition = "2.0 0.0 1.0"; 
860
861        emlig1->add_condition(condition);
862
863        vector<int> sizevector;
864        for(int s = 0;s<=emlig1->number_of_parameters;s++)
865        {
866                sizevector.push_back(emlig1->statistic_rowsize(s));
867        }
868
869        emlig1->step_me(2);
870
871        condition = "2.0 1.0 0.0";
872
873        emlig1->add_condition(condition);
874
875        sizevector.clear();
876        for(int s = 0;s<=emlig1->number_of_parameters;s++)
877        {
878                sizevector.push_back(emlig1->statistic_rowsize(s));
879        }
880        */
881
882        return 0;
883}
884
885
Note: See TracBrowser for help on using the browser.