root/applications/robust/robustlib.cpp @ 1401

Revision 1401, 7.3 kB (checked in by sindj, 13 years ago)

Nevim, co se zmenilo, dodelani experimentu s maxlik odhady asi. JS

RevLine 
[976]1#include "robustlib.h"
2
[1282]3
[1335]4double polyhedron::triangulate(bool should_integrate)
[1273]5        {
[1324]6                for(set<simplex*>::iterator t_ref = triangulation.begin();t_ref!=triangulation.end();t_ref++)
7                {
8                        delete (*t_ref);
9                }               
[1301]10                triangulation.clear();
[1299]11
[1271]12                if(should_integrate)
13                {
14                        ((toprow *)this)->probability = 0.0;
15                }               
16               
[1301]17                if(vertices.size()==1)
18                {
[1324]19                        simplex* vert_simplex = new simplex((vertex*)this);                     
[1301]20
[1324]21                        triangulation.insert(vert_simplex);
[1301]22                }
23
[1254]24                for(list<polyhedron*>::iterator child_ref = children.begin();child_ref!=children.end();child_ref++)
[1271]25                {                       
[1324]26                        for(set<simplex*>::iterator s_ref = (*child_ref)->triangulation.begin();s_ref!=(*child_ref)->triangulation.end();s_ref++)
[1254]27                        {
[1324]28                                simplex* new_simplex = new simplex((*s_ref)->vertices);                                                         
[1301]29
[1324]30                                pair<set<vertex*>::iterator,bool> ret_val = new_simplex->vertices.insert(*vertices.begin());
[1301]31
32                                if(ret_val.second == true)
33                                {
[1320]34                                        double cur_prob = 0;
[1301]35
[1338]36                                        /*
37                                        if(should_integrate&&new_simplex->vertices.size()!=3)
38                                        {
39                                                cout << "Error: Wrong vertex count for integration!";
40                                        }
41                                        */
42
[1301]43                                        if(should_integrate)
44                                        {
[1320]45                                                cur_prob = ((toprow *)this)->integrate_simplex(new_simplex, 'S');
46
47                                                ((toprow *)this)->probability += cur_prob;
[1301]48                                        }
[1320]49
[1324]50                                        triangulation.insert(new_simplex);
51                                }
52                                else
53                                {
54                                        delete new_simplex;
55                                }
[1301]56                        }       
[1335]57                }       
58
59                if(should_integrate)
60                {
61                        return ((toprow *)this)->probability;
62                }
63                else
64                {
65                        return 0.0;
66                }
[1301]67               
68                /*
69                for(list<polyhedron*>::iterator child_ref = children.begin();child_ref!=children.end();child_ref++)
70                {                       
71                        for(list<set<vertex*>>::iterator t_ref = (*child_ref)->triangulation.begin();t_ref!=(*child_ref)->triangulation.end();t_ref++)
72                        {
73                                set<vertex*> new_simplex;
[1299]74                                new_simplex.insert((*t_ref).begin(),(*t_ref).end());                   
[1254]75
[1299]76                                for(set<vertex*>::iterator suitable_vert_ref = vertices.begin();*suitable_vert_ref<*(*t_ref).begin();suitable_vert_ref++)
77                                {
[1301]78                                        set<vertex*> suitable_simplex;
79                                        suitable_simplex.insert(new_simplex.begin(),new_simplex.end());
80                                       
81                                        suitable_simplex.insert(*suitable_vert_ref);
[1254]82
[1301]83                                        triangulation.push_back(suitable_simplex);
[1254]84
[1271]85                                        if(should_integrate)
[1254]86                                        {
[1301]87                                                ((toprow *)this)->probability += ((toprow *)this)->integrate_simplex(suitable_simplex, 'S');
[1271]88                                        }
[1299]89                                }                               
[1271]90                        }       
[1301]91                }*/             
[1271]92        }
[1268]93
94
[1324]95        double toprow::integrate_simplex(simplex* simplex, char c)
[1271]96        {
[1282]97                // cout << ((toprow*)this)->condition << endl;         
[1362]98                int sigma_order = ((toprow*)this)->condition_order-simplex->vertices.size()-1;
[1282]99
[1271]100                // cout << "C:" << condition_order << "  N:" << my_emlig->number_of_parameters << "  C+N:" << condition_order-my_emlig->number_of_parameters << endl;
101                // pause(0.1);
[1254]102
[1280]103                if(sigma_order >= 0)
[1271]104                {
[1275]105
[1282]106                        //cout << endl;
107                        //cout << ((toprow*)this)->condition << endl;
108                        //cout << "C:" << condition_order+2 << "  N:" << my_emlig->number_of_parameters << "  C+N:" << condition_order-my_emlig->number_of_parameters+2 << endl;
109                       
[1275]110
[1271]111                        emlig* current_emlig;
[1331]112                        simplex->clear_gammas();
[1379]113                        simplex->probability = 0;
[1254]114
[1271]115                        if(this->my_emlig!=NULL)
116                        {
117                                current_emlig = this->my_emlig;
118                        }
119                        else
120                        {
121                                throw exception("The statistic of the polyhedron you are trying to integrate over doesn't belong to any emlig!");
122                        }                                               
[1254]123
[1384]124                        toprow* as_toprow = (toprow*)this;     
[1254]125
[1384]126                        //cout << "Current condition:" << as_toprow->condition_sum << endl;
127
[1324]128                        int dimension = simplex->vertices.size()-1;
[1254]129
[1275]130                        mat jacobian(dimension,dimension);                     
[1254]131
[1271]132                        map<double,int> as;
[1379]133                        vertex* base_vertex = *simplex->vertices.begin();                                                       
[1376]134                               
[1379]135                        int row_count = 0;
[1376]136                        for(set<vertex*>::iterator vert_ref = simplex->vertices.begin(); vert_ref!=simplex->vertices.end();vert_ref++)
[1271]137                        {
[1376]138                                if(vert_ref!=simplex->vertices.begin())
139                                {
140                                        vec relative_coords = (*vert_ref)->get_coordinates()-base_vertex->get_coordinates();
[1379]141                                        jacobian.set_row(row_count-1,relative_coords);
[1376]142                                }
[1268]143
[1379]144                                vec extended_coords = (*vert_ref)->get_coordinates();
145                                extended_coords.ins(0,-1);
146
[1384]147                                //cout << "Ext. coords:" << extended_coords << "  Condition sum:" << as_toprow->condition_sum << endl;
[1383]148
[1379]149                                double a = extended_coords*as_toprow->condition_sum;
[1376]150                                if(a<current_emlig->min_ll)
[1271]151                                {
[1376]152                                        current_emlig->minimal_vertex = (*vert_ref);
153                                        current_emlig->min_ll = a;                                             
154                                }
[1275]155
[1376]156                                //cout << "a0:" << a_0 << " a0 coords:" << base_vertex->get_coordinates() << " am:" << a_m << " am coords:" << (*vert_ref)->get_coordinates() << endl;
[1275]157
[1384]158                                //cout << "Absolute coords:(V"  << row_count << ")" << (*vert_ref)->get_coordinates() << endl;
[1376]159                                //cout << "Relative coords:(V"  << row_count << ")" << relative_coords << endl;
[1275]160
[1376]161                                pair<map<double,int>::iterator,bool> returned = as.insert(pair<double,int>(a,1));
162                                if(returned.second == false)
163                                {
164                                        (*returned.first).second++;
[1379]165                                }
166                               
167                                row_count++;
168                        }               
[1272]169                       
[1282]170                        /*
[1281]171                        int as_count = 1;
172                        for(map<double,int>::iterator as_ref = as.begin();as_ref!=as.end();as_ref++)
173                        {
174                                cout << "a_" << as_count << ": " << (*as_ref).first << "    ";
175                                as_count++;
[1365]176                        }
[1396]177                        */                     
[1269]178
[1379]179                        vector<double> gamma_facs;
[1271]180                        // cout << jacobian << endl;
[1379]181                        double det_jacobian    = abs(det(jacobian));                   
182                        for(map<double,int>::iterator a_ref = as.begin();a_ref!=as.end();a_ref++)
[1271]183                        {
[1379]184                                double k_multiplier = 1;                       
[1272]185                               
[1376]186                                int a_order = (*a_ref).second;                 
[1379]187                                current_emlig->set_correction_factors(a_order-1);
[1275]188
[1379]189                                vector<double> factors;                                                                                         
[1376]190                                for(map<double,int>::iterator a2_ref = as.begin();a2_ref!=as.end();a2_ref++)
191                                {                                       
192                                        if(a2_ref!=a_ref)
[1275]193                                        {                                                                               
[1376]194                                                for(int k = 0;k<(*a2_ref).second;k++)
[1271]195                                                {
[1379]196                                                        factors.push_back((*a2_ref).first-(*a_ref).first);
[1272]197                                                }
[1270]198
[1379]199                                                k_multiplier /= pow((*a2_ref).first-(*a_ref).first,(*a2_ref).second);                                           
[1376]200                                        }                                                                               
[1379]201                                }               
[1254]202
[1379]203                                double bracket_combination = 0;
[1365]204
[1379]205                                for(int k = 0;k < a_order;k++)
[1275]206                                {
[1379]207                                        if(k==gamma_facs.size())
[1275]208                                        {
[1379]209                                                gamma_facs.push_back(0.0);
[1325]210                                        }
[1379]211                                       
[1395]212                                        double factor_multiplier = pow((double)-1,k)/pow((*a_ref).first,sigma_order-a_order+k+1);//pow((double)-1,k+1)
[1379]213                                                                               
[1395]214                                        double value = 0;
[1379]215                                        if(k!=0)
[1395]216                                        {                                                       
[1379]217                                                ivec control_vec = ivec();
218                                                control_vec.ins(0,my_emlig->number_of_parameters-a_order+1);                                           
[1395]219                                                for(multiset<my_ivec>::iterator combi_ref = this->my_emlig->correction_factors[a_order-k-1].begin();combi_ref!=this->my_emlig->correction_factors[a_order-k-1].upper_bound(my_ivec(control_vec));combi_ref++)
[1379]220                                                {
[1395]221                                                        double bracket_factor = 1/fact(k);
[1379]222                                                         
223                                                        for(int j = 0;j<(*combi_ref).size();j++)
224                                                        {
225                                                                //cout << "Factor vector:" << (*combi_ref) << endl;
226                                                               
227                                                                bracket_factor /= factors[(*combi_ref)[j]-1];
228                                                        }
229                                                                                                       
[1383]230                                                        value += bracket_factor*factor_multiplier*k_multiplier;                                                 
[1395]231                                                }                                               
[1349]232                                        }
[1379]233                                        else
234                                        {
[1395]235                                                value = k_multiplier*factor_multiplier;                                                 
236                                        }
237
238                                        simplex->insert_gamma(k,value,(*a_ref).first);
239                                        gamma_facs[k] += value;
[1325]240                                }                               
[1272]241                        }
[1271]242
[1379]243                        double int_value = 0;
[1395]244                        double volume = det_jacobian/fact(jacobian.rows());
[1379]245                        int gamma_size = (int)gamma_facs.size();
246                        if(sigma_order-gamma_size>=0)
247                        {                                                               
248                                for(int k = 0;k<gamma_size;k++)
249                                {       
[1395]250                                        int_value += volume*fact(sigma_order+k)*gamma_facs[k]/pow(2.0,((toprow*)this)->condition_order);                               
[1379]251                                }       
252                        }
253                        else
254                        {
255                                int_value = -1;
256                        }
[1271]257                       
[1379]258                        simplex->probability = int_value;
[1395]259                        simplex->volume = volume;
[1401]260                        //cout << "Probability:" << int_value << endl << endl;
[1395]261                        //pause(0.1);
[1379]262                        return int_value;               
[1271]263                }
264                else
265                {
[1362]266                        cout << "Improper probability density." << endl;
[1271]267                        return 0.0;
268                }
[1254]269        }
Note: See TracBrowser for help on using the browser.