root/library/bdm/base/bdmbase.cpp @ 545

Revision 545, 8.8 kB (checked in by vbarta, 15 years ago)

moved some datalink method bodies to bdmbase.cpp; more datalink tests

  • Property svn:eol-style set to native
RevLine 
[262]1
[384]2#include "bdmbase.h"
[2]3
[262]4//! Space of basic BDM structures
[254]5namespace bdm {
[271]6
[477]7const int RV_BUFFER_STEP = 1;
[270]8RVmap RV_MAP;
[271]9Array<string> RV_NAMES ( RV_BUFFER_STEP );
10ivec RV_SIZES ( RV_BUFFER_STEP );
[2]11
[477]12RV RV0 = RV();
[211]13
[477]14void RV::clear_all() {
15        RV_MAP.clear();
16        RV_SIZES.clear();
17        RV_NAMES = Array<string> ( RV_BUFFER_STEP );
[436]18}
[477]19
[270]20int RV::init ( const string &name, int size ) {
[162]21        //Refer
[270]22        int id;
[430]23        RVmap::const_iterator iter = RV_MAP.find ( name );
[270]24        if ( iter == RV_MAP.end() ) {
[477]25                id = RV_MAP.size() + 1;
[280]26                //debug
[477]27                /*              {
28                                        cout << endl;
29                                        RVmap::const_iterator iter = RV_MAP.begin();
30                                        for(RVmap::const_iterator iter=RV_MAP.begin(); iter!=RV_MAP.end(); iter++){
31                                                cout << "key: " << iter->first << " val: " << iter->second <<endl;
32                                        }
33                                }*/
34
35                RV_MAP.insert ( make_pair ( name, id ) ); //add new rv
36                if ( id >= RV_NAMES.length() ) {
37                        RV_NAMES.set_length ( id + RV_BUFFER_STEP, true );
38                        RV_SIZES.set_length ( id + RV_BUFFER_STEP, true );
[270]39                }
[477]40                RV_NAMES ( id ) = name;
41                RV_SIZES ( id ) = size;
42        } else {
[270]43                id = iter->second;
[477]44                it_assert ( RV_SIZES ( id ) == size, "RV " + name + " of different size already exists" );
[270]45        }
46        return id;
[2]47};
48
[477]49int RV::countsize() const {
50        int tmp = 0;
51        for ( int i = 0; i < len; i++ ) {
52                tmp += RV_SIZES ( ids ( i ) );
53        }
54        return tmp;
55}
[2]56
[271]57ivec RV::cumsizes() const {
58        ivec szs ( len );
[477]59        int tmp = 0;
60        for ( int i = 0; i < len; i++ ) {
61                tmp += RV_SIZES ( ids ( i ) );
[271]62                szs ( i ) = tmp;
63        }
64        return szs;
65}
66
[477]67void RV::init ( const Array<std::string> &in_names, const ivec &in_sizes, const ivec &in_times ) {
[270]68        len = in_names.length();
[477]69        it_assert_debug ( in_names.length() == in_times.length(), "check \"times\" " );
70        it_assert_debug ( in_names.length() == in_sizes.length(), "check \"sizes\" " );
[271]71
[270]72        times.set_length ( len );
73        ids.set_length ( len );
74        int id;
[477]75        for ( int i = 0; i < len; i++ ) {
[270]76                id = init ( in_names ( i ), in_sizes ( i ) );
77                ids ( i ) = id;
78        }
79        times = in_times;
80        dsize = countsize();
[162]81}
[8]82
[270]83RV::RV ( string name, int sz, int tm ) {
[477]84        Array<string> A ( 1 );
85        A ( 0 ) = name;
86        init ( A, vec_1 ( sz ), vec_1 ( tm ) );
[162]87}
88
[145]89bool RV::add ( const RV &rv2 ) {
[32]90        // TODO
[477]91        if ( rv2.len > 0 ) { //rv2 is nonempty
[162]92                ivec ind = rv2.findself ( *this ); //should be -1 all the time
[477]93                ivec index = itpp::find ( ind == -1 );
[162]94
95                if ( index.length() < rv2.len ) { //conflict
96                        ids = concat ( ids, rv2.ids ( index ) );
97                        times = concat ( times, rv2.times ( index ) );
[477]98                } else {
[162]99                        ids = concat ( ids, rv2.ids );
100                        times = concat ( times, rv2.times );
101                }
102                len = ids.length();
[270]103                dsize = countsize();
[477]104                return ( index.length() == rv2.len ); //conflict or not
105        } else { //rv2 is empty
[270]106                return true; // no conflict
[145]107        }
[32]108};
109
[270]110RV RV::subselect ( const ivec &ind ) const {
[162]111        RV ret;
[271]112        ret.ids = ids ( ind );
[477]113        ret.times = times ( ind );
[270]114        ret.len = ind.length();
[477]115        ret.dsize = ret.countsize();
[162]116        return ret;
[5]117}
118
[477]119RV RV::operator() ( int di1, int di2 ) const {
120        ivec sz = cumsizes();
121        int i1 = 0;
122        while ( sz ( i1 ) < di1 ) i1++;
123        int i2 = i1;
124        while ( sz ( i2 ) < di2 ) i2++;
125        return subselect ( linspace ( i1, i2 ) );
[422]126}
127
[477]128void RV::t ( int delta ) {
129        times += delta;
130}
[8]131
[145]132bool RV::equal ( const RV &rv2 ) const {
[270]133        return ( ids == rv2.ids ) && ( times == rv2.times );
[102]134}
[5]135
[504]136shared_ptr<mpdf> epdf::condition (const RV &rv) const {
137        it_warning ("Not implemented");
138        return shared_ptr<mpdf>();
139}
140
141shared_ptr<epdf> epdf::marginal (const RV &rv) const {
142        it_warning ("Not implemented");
143        return shared_ptr<epdf>();
144}
145
[201]146mat epdf::sample_m ( int N ) const {
[270]147        mat X = zeros ( dim, N );
[477]148        for ( int i = 0; i < N; i++ ) X.set_col ( i, this->sample() );
[102]149        return X;
[461]150}
[102]151
[502]152vec epdf::evallog_m (const mat &Val) const {
153        vec x (Val.cols());
154        for (int i = 0; i < Val.cols(); i++) {
155                x (i) = evallog ( Val.get_col (i) );
156        }
[102]157
[502]158        return x;
159}
160
161vec epdf::evallog_m (const Array<vec> &Avec) const {
162        vec x (Avec.size());
163        for (int i = 0; i < Avec.size(); i++) {
164                x (i) = evallog ( Avec (i) );
165        }
166
167        return x;
168}
169
[532]170mat mpdf::samplecond_m (const vec &cond, int N) {
171        mat M( dimension(), N );
172        for ( int i = 0; i < N; i++ ) {
173                M.set_col ( i, samplecond( cond ) );
174        }
175
176        return M;
177}
178
[477]179void mpdf::from_setting ( const Setting &set ) {
[527]180        shared_ptr<RV> r = UI::build<RV> ( set, "rv", UI::optional );
[477]181        if ( r ) {
182                set_rv ( *r );
183        }
[461]184
[527]185        r = UI::build<RV> ( set, "rvc", UI::optional );
[477]186        if ( r ) {
187                set_rvc ( *r );
188        }
[461]189}
190
[545]191void datalink::set_connection (const RV &rv, const RV &rv_up) {
192        downsize = rv._dsize();
193        upsize = rv_up._dsize();
194        v2v_up = rv.dataind (rv_up);
195
196        it_assert_debug (v2v_up.length() == downsize, "rv is not fully in rv_up");
197}
198
199void datalink::set_connection (int ds, int us, const ivec &upind) {
200        downsize = ds;
201        upsize = us;
202        v2v_up = upind;
203
204        it_assert_debug (v2v_up.length() == downsize, "rv is not fully in rv_up");
205}
206
207void datalink_m2e::set_connection (const RV &rv, const RV &rvc, const RV &rv_up) {
208        datalink::set_connection (rv, rv_up);
209        condsize = rvc._dsize();
210        //establish v2c connection
211        rvc.dataind (rv_up, v2c_lo, v2c_up);
212}
213
214vec datalink_m2e::get_cond (const vec &val_up) {
215        vec tmp (condsize);
216        set_subvector (tmp, v2c_lo, val_up (v2c_up));
217        return tmp;
218}
219
220void datalink_m2e::pushup_cond (vec &val_up, const vec &val, const vec &cond) {
221        it_assert_debug (downsize == val.length(), "Wrong val");
222        it_assert_debug (upsize == val_up.length(), "Wrong val_up");
223        set_subvector (val_up, v2v_up, val);
224        set_subvector (val_up, v2c_up, cond);
225}
226
[102]227std::ostream &operator<< ( std::ostream &os, const RV &rv ) {
[270]228        int id;
[477]229        for ( int i = 0; i < rv.len ; i++ ) {
230                id = rv.ids ( i );
[270]231                os << id << "(" << RV_SIZES ( id ) << ")" <<  // id(size)=
232                "=" << RV_NAMES ( id )  << "_{"  << rv.times ( i ) << "}; "; //name_{time}
[5]233        }
234        return os;
235}
236
[145]237str RV::tostr() const {
[270]238        ivec idlist ( dsize );
239        ivec tmlist ( dsize );
[19]240        int i;
241        int pos = 0;
[477]242        for ( i = 0; i < len; i++ ) {
[280]243                idlist.set_subvector ( pos, pos + size ( i ) - 1, ids ( i ) );
244                tmlist.set_subvector ( pos, pos + size ( i ) - 1, times ( i ) );
245                pos += size ( i );
[19]246        }
[145]247        return str ( idlist, tmlist );
[19]248}
[32]249
[270]250ivec RV::dataind ( const RV &rv2 ) const {
[145]251        ivec res ( 0 );
[477]252        if ( rv2._dsize() > 0 ) {
[165]253                str str2 = rv2.tostr();
254                ivec part;
255                int i;
[477]256                for ( i = 0; i < len; i++ ) {
[165]257                        part = itpp::find ( ( str2.ids == ids ( i ) ) & ( str2.times == times ( i ) ) );
258                        res = concat ( res, part );
259                }
[145]260        }
[477]261        it_assert_debug ( res.length() == dsize, "this rv is not fully present in crv!" );
[145]262        return res;
[165]263
[145]264}
265
[270]266void RV::dataind ( const RV &rv2, ivec &selfi, ivec &rv2i ) const {
[182]267        //clean results
[270]268        selfi.set_size ( 0 );
269        rv2i.set_size ( 0 );
270
[182]271        // just in case any rv is empty
[477]272        if ( ( len == 0 ) || ( rv2.length() == 0 ) ) {
273                return;
274        }
[270]275
[182]276        //find comon rv
[477]277        ivec cids = itpp::find ( this->findself ( rv2 ) >= 0 );
[270]278
279        // index of
[477]280        if ( cids.length() > 0 ) {
[182]281                str str1 = tostr();
[270]282                str str2 = rv2.tostr();
283
[182]284                ivec part1;
285                ivec part2;
[477]286                int i, j;
[182]287                // find common rv in strs
[477]288                for ( j = 0; j < cids.length(); j++ ) {
[270]289                        i = cids ( j );
[182]290                        part1 = itpp::find ( ( str1.ids == ids ( i ) ) & ( str1.times == times ( i ) ) );
291                        part2 = itpp::find ( ( str2.ids == ids ( i ) ) & ( str2.times == times ( i ) ) );
292                        selfi = concat ( selfi, part1 );
293                        rv2i = concat ( rv2i, part2 );
294                }
295        }
[477]296        it_assert_debug ( selfi.length() == rv2i.length(), "this should not happen!" );
[182]297}
298
[176]299RV RV::subt ( const RV &rv2 ) const {
[145]300        ivec res = this->findself ( rv2 ); // nonzeros
[178]301        ivec valid;
[477]302        if ( dsize > 0 ) {
303                valid = itpp::find ( res == -1 );    //-1 => value not found => it remains
304        }
[145]305        return ( *this ) ( valid ); //keep those that were not found in rv2
306}
307
308ivec RV::findself ( const RV &rv2 ) const {
309        int i, j;
310        ivec tmp = -ones_i ( len );
[477]311        for ( i = 0; i < len; i++ ) {
312                for ( j = 0; j < rv2.length(); j++ ) {
[145]313                        if ( ( ids ( i ) == rv2.ids ( j ) ) & ( times ( i ) == rv2.times ( j ) ) ) {
314                                tmp ( i ) = j;
315                                break;
316                        }
317                }
318        }
319        return tmp;
320}
321
[477]322void RV::from_setting ( const Setting &set ) {
[357]323        Array<string> A;
[479]324        it_assert ( !A.length(), "default array not empty" );
325        UI::get ( A, set, "names" );
[477]326
[357]327        ivec szs;
[477]328        if ( !UI::get ( szs, set, "sizes" ) )
329                szs = ones_i ( A.length() );
330
[357]331        ivec tms;
[477]332        if ( !UI::get ( tms, set, "times" ) )
333                tms = zeros_i ( A.length() );
334
[357]335        // TODO tady se bude plnit primo do jeho promennych, a pak se zavola validacnni metoda, takze cele prepsat, ano?
[477]336        init ( A, szs, tms );
[357]337}
338
[102]339RV concat ( const RV &rv1, const RV &rv2 ) {
[32]340        RV pom = rv1;
[102]341        pom.add ( rv2 );
[32]342        return pom;
343}
[170]344
[477]345void mepdf::from_setting ( const Setting &set ) {
346        shared_ptr<epdf> e ( UI::build<epdf> ( set, "epdf", UI::compulsory ) );
[489]347        iepdf = e;
348        set_ep(iepdf.get());
[462]349}
350
[507]351RV get_composite_rv ( const Array<shared_ptr<mpdf> > &mpdfs,
352                      bool checkoverlap ) {
[175]353        RV rv; //empty rv
354        bool rvaddok;
[477]355        for ( int i = 0; i < mpdfs.length(); i++ ) {
356                rvaddok = rv.add ( mpdfs ( i )->_rv() ); //add rv to common rvs.
[270]357                // If rvaddok==false, mpdfs overlap => assert error.
[507]358                it_assert_debug ( rvaddok || !checkoverlap, "mprod::mprod() input mpdfs overlap in rv!" );
359        }
360
[175]361        return rv;
362}
363
[270]364void BM::bayesB ( const mat &Data ) {
[477]365        for ( int t = 0; t < Data.cols(); t++ ) {
366                bayes ( Data.get_col ( t ) );
367        }
[182]368}
[262]369}
Note: See TracBrowser for help on using the browser.