forked from BhallaLab/moose-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGsolve.cpp
1165 lines (1036 loc) · 35.9 KB
/
Gsolve.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**********************************************************************
** This program is part of 'MOOSE', the
** Messaging Object Oriented Simulation Environment.
** Copyright (C) 2003-2010 Upinder S. Bhalla. and NCBS
** It is made available under the terms of the
** GNU Lesser General Public License version 2.1
** See the file COPYING.LIB for the full notice.
**********************************************************************/
#include "../basecode/header.h"
#include "../randnum/randnum.h"
#include "../mesh/VoxelJunction.h"
#include "../utility/print_function.hpp"
#include "../utility/utility.h"
#include "VoxelPoolsBase.h"
#include "XferInfo.h"
#include "KsolveBase.h"
#include "RateTerm.h"
#include "FuncTerm.h"
#include "FuncRateTerm.h"
#include "../basecode/SparseMatrix.h"
#include "KinSparseMatrix.h"
#include "GssaSystem.h"
#include "Stoich.h"
#include "GssaVoxelPools.h"
#include "Gsolve.h"
#include <chrono>
#include <algorithm>
#ifdef USE_BOOST_ASYNC
#define BOOST_THREAD_PROVIDES_FUTURE
#include <boost/thread.hpp>
#include <boost/thread/future.hpp>
#endif
#include <future>
#include <atomic>
#include <thread>
#include <functional>
#define SIMPLE_ROUNDING 0
// When set use std::async rather than std::thread. This is slightly faster
// (roughly 3% with gcc7).
#define USING_ASYNC 1
#if USING_ASYNC
#define THREAD_LAUNCH_POLICY std::launch::async
#endif
const unsigned int OFFNODE = ~0;
const Cinfo* Gsolve::initCinfo()
{
///////////////////////////////////////////////////////
// Field definitions
///////////////////////////////////////////////////////
static ValueFinfo< Gsolve, Id > stoich (
"stoich",
"Stoichiometry object for handling this reaction system.",
&Gsolve::setStoich,
&Gsolve::getStoich
);
static ValueFinfo< Gsolve, Id > compartment (
"compartment",
"Compartment that contains this reaction system.",
&Gsolve::setCompartment,
&Gsolve::getCompartment
);
static ReadOnlyValueFinfo< Gsolve, unsigned int > numLocalVoxels(
"numLocalVoxels",
"Number of voxels in the core reac-diff system, on the "
"current solver. ",
&Gsolve::getNumLocalVoxels
);
static LookupValueFinfo<Gsolve, unsigned int, vector< double > > nVec(
"nVec",
"vector of pool counts",
&Gsolve::setNvec,
&Gsolve::getNvec
);
static ValueFinfo< Gsolve, unsigned int > numAllVoxels(
"numAllVoxels",
"Number of voxels in the entire reac-diff system, "
"including proxy voxels to represent abutting compartments.",
&Gsolve::setNumAllVoxels,
&Gsolve::getNumAllVoxels
);
static ValueFinfo< Gsolve, unsigned int > numPools(
"numPools",
"Number of molecular pools in the entire reac-diff system, "
"including variable, function and buffered.",
&Gsolve::setNumPools,
&Gsolve::getNumPools
);
static ValueFinfo< Gsolve, unsigned int > numThreads(
"numThreads",
"Number of threads to use in GSolve",
&Gsolve::setNumThreads,
&Gsolve::getNumThreads
);
static ValueFinfo< Gsolve, bool > useRandInit(
"useRandInit",
"Flag: True when using probabilistic (random) rounding.\n "
"Default: True.\n "
"When initializing the mol# from floating-point concInit values, "
"we have two options. One is to look at each concInit, obtain "
"nInit, and round to the nearest integer. The other is to look "
"at each nInit (coming from concInit), "
"and probabilistically round up or down depending on the "
"value. For example, if we had a nInit value of 1.49, "
"this would always be rounded to 1.0 if the flag is false, "
"and would be rounded to 1.0 and 2.0 in the ratio 51:49 if "
"the flag is true. ",
&Gsolve::setRandInit,
&Gsolve::getRandInit
);
static ValueFinfo< Gsolve, int > rngSeedOffset(
"rngSeedOffset",
"Get rng sequence independence by adding rngSeedOffset*(1+voxIdx)"
" to the global rngSeed in each voxel, upon reinit.",
&Gsolve::setRngSeedOffset,
&Gsolve::getRngSeedOffset
);
static ValueFinfo< Gsolve, bool > useClockedUpdate(
"useClockedUpdate",
"Flag: True to cause all reaction propensities to be updated "
"on every clock tick.\n"
"Default: False.\n"
"This flag should be set when the reaction system "
"includes a function with a dependency on time or on external "
"events. It has a significant speed penalty so the flag "
"should not be set unless there are such functions. ",
&Gsolve::setClockedUpdate,
&Gsolve::getClockedUpdate
);
static ReadOnlyLookupValueFinfo<
Gsolve, unsigned int, vector< unsigned int > > numFire(
"numFire",
"Vector of the number of times each reaction has fired."
"Indexed by the voxel number."
"Zeroed out at reinit.",
&Gsolve::getNumFire
);
// DestFinfo definitions
static DestFinfo process( "process",
"Handles process call",
new ProcOpFunc< Gsolve >( &Gsolve::process ) );
static DestFinfo reinit( "reinit",
"Handles reinit call",
new ProcOpFunc< Gsolve >( &Gsolve::reinit ) );
static DestFinfo voxelVol( "voxelVol",
"Handles updates to all voxels. Comes from parent "
"ChemCompt object.",
new OpFunc1< Gsolve, vector< double > >(
&Gsolve::updateVoxelVol )
);
static DestFinfo initProc( "initProc",
"Handles initProc call from Clock",
new ProcOpFunc< Gsolve >( &Gsolve::initProc ) );
static DestFinfo initReinit( "initReinit",
"Handles initReinit call from Clock",
new ProcOpFunc< Gsolve >( &Gsolve::initReinit ) );
// Shared definitions
static Finfo* procShared[] =
{
&process, &reinit
};
static SharedFinfo proc( "proc",
"Shared message for process and reinit",
procShared, sizeof( procShared ) / sizeof( const Finfo* )
);
static Finfo* initShared[] =
{
&initProc, &initReinit
};
static SharedFinfo init( "init",
"Shared message for initProc and initReinit. This is used"
" when the system has cross-compartment reactions. ",
initShared, sizeof( initShared ) / sizeof( const Finfo* )
);
///////////////////////////////////////////////////////
static Finfo* gsolveFinfos[] =
{
&stoich, // Value
&numLocalVoxels, // ReadOnlyValue
&nVec, // LookupValue
&numAllVoxels, // ReadOnlyValue
&numPools, // Value
&numThreads, // Value
&voxelVol, // DestFinfo
&proc, // SharedFinfo
&init, // SharedFinfo
// Here we put new fields that were not there in the Ksolve.
&useRandInit, // Value
&useClockedUpdate, // Value
&numFire, // ReadOnlyLookupValue
};
static Dinfo< Gsolve > dinfo;
static Cinfo gsolveCinfo( "Gsolve",
Neutral::initCinfo(),
gsolveFinfos,
sizeof(gsolveFinfos)/sizeof(Finfo *),
&dinfo
);
return &gsolveCinfo;
}
static const Cinfo* gsolveCinfo = Gsolve::initCinfo();
//////////////////////////////////////////////////////////////
// Class definitions
//////////////////////////////////////////////////////////////
Gsolve::Gsolve() :
numThreads_ ( 1 ),
pools_( 1 ),
startVoxel_( 0 ),
dsolve_(),
dsolvePtr_(nullptr),
useClockedUpdate_( false ),
rngSeedOffset_( 1031 )
{
// Initialize with global seed.
rng_.setSeed(moose::getGlobalSeed());
numThreads_ = moose::getEnvInt("MOOSE_NUM_THREADS", 1);
}
Gsolve& Gsolve::operator=(const Gsolve& )
{
return *this;
}
Gsolve::~Gsolve()
{
;
}
//////////////////////////////////////////////////////////////
// Field Access functions
//////////////////////////////////////////////////////////////
Id Gsolve::getStoich() const
{
return stoich_;
}
void Gsolve::setCompartment( Id compt )
{
if ( ( compt.element()->cinfo()->isA( "ChemCompt" ) ) )
{
compartment_ = compt;
vector< double > vols = Field< vector< double > >::get( compt, "voxelVolume" );
if ( vols.size() > 0 )
{
pools_.resize( vols.size() );
for ( unsigned int i = 0; i < vols.size(); ++i )
{
pools_[i].setVolume( vols[i] );
}
}
}
}
Id Gsolve::getCompartment() const
{
return compartment_;
}
void Gsolve::setStoich( Id stoich )
{
// This call is done _before_ setting the path on stoich
assert( stoich.element()->cinfo()->isA( "Stoich" ) );
stoich_ = stoich;
stoichPtr_ = reinterpret_cast< Stoich* >( stoich.eref().data() );
if ( stoichPtr_->getNumAllPools() == 0 )
{
stoichPtr_ = 0;
return;
}
sys_.stoich = stoichPtr_;
sys_.isReady = false;
for ( unsigned int i = 0; i < pools_.size(); ++i )
pools_[i].setStoich( stoichPtr_ );
}
unsigned int Gsolve::getNumLocalVoxels() const
{
return pools_.size();
}
unsigned int Gsolve::getNumAllVoxels() const
{
return pools_.size(); // Need to redo.
}
// If we're going to do this, should be done before the zombification.
void Gsolve::setNumAllVoxels( unsigned int numVoxels )
{
if ( numVoxels == 0 )
{
return;
}
pools_.resize( numVoxels );
sys_.isReady = false;
}
vector< double > Gsolve::getNvec( unsigned int voxel) const
{
static vector< double > dummy;
if ( voxel < pools_.size() )
{
return const_cast< GssaVoxelPools* >( &( pools_[ voxel ]) )->Svec();
}
return dummy;
}
void Gsolve::setNvec( unsigned int voxel, vector< double > nVec )
{
if ( voxel < pools_.size() )
{
if ( nVec.size() != pools_[voxel].size() )
{
cout << "Warning: Gsolve::setNvec: size mismatch ( " <<
nVec.size() << ", " << pools_[voxel].size() << ")\n";
return;
}
double* s = pools_[voxel].varS();
for ( unsigned int i = 0; i < nVec.size(); ++i )
{
s[i] = std::round( nVec[i] );
if ( s[i] < 0.0 )
s[i] = 0.0;
}
if ( sys_.isReady )
pools_[voxel].refreshAtot( &sys_ );
}
}
vector< unsigned int > Gsolve::getNumFire( unsigned int voxel) const
{
static vector< unsigned int > dummy;
if ( voxel < pools_.size() )
{
return const_cast< GssaVoxelPools* >( &( pools_[ voxel ]) )->numFire();
}
return dummy;
}
bool Gsolve::getRandInit() const
{
return sys_.useRandInit;
}
void Gsolve::setRandInit( bool val )
{
sys_.useRandInit = val;
}
int Gsolve::getRngSeedOffset() const
{
return rngSeedOffset_;
}
void Gsolve::setRngSeedOffset( int val )
{
rngSeedOffset_ = val;
}
bool Gsolve::getClockedUpdate() const
{
return useClockedUpdate_;
}
void Gsolve::setClockedUpdate( bool val )
{
useClockedUpdate_ = val;
}
//////////////////////////////////////////////////////////////
// Process operations.
//////////////////////////////////////////////////////////////
void Gsolve::process( const Eref& e, ProcPtr p )
{
// cout << stoichPtr_ << " dsolve = " << dsolvePtr_ << endl;
if ( !stoichPtr_ )
return;
// First, handle incoming diffusion values. Note potential for
// issues with roundoff if diffusion is not integral.
if ( dsolvePtr_ )
{
vector< double > dvalues( 4 );
dvalues[0] = 0;
dvalues[1] = getNumLocalVoxels();
dvalues[2] = 0;
dvalues[3] = stoichPtr_->getNumVarPools();
dsolvePtr_->getBlock( dvalues );
dsolvePtr_->setPrev();
// Here we need to convert to integers, just in case. Normally
// one would use a stochastic (integral) diffusion method with
// the GSSA, but in mixed models it may be more complicated.
vector< double >::iterator i = dvalues.begin() + 4;
for ( ; i != dvalues.end(); ++i )
{
#if 0
*i = std::round( *i );
#else
// *i = approximateWithInteger_debug(__FUNCTION__, *i, rng_);
*i = approximateWithInteger(*i, rng_);
#endif
}
setBlock( dvalues );
}
if ( dsolvePtr_ )
{
for ( auto i = pools_.begin(); i != pools_.end(); ++i )
i->refreshAtot( &sys_ );
}
if( 1 == numThreads_ || 1 == pools_.size())
{
if( numThreads_ > 1 )
{
cerr << "Warn: Not enough voxel. Reverting back to serial mode. " << endl;
numThreads_ = 1;
}
for ( size_t i = 0; i < pools_.size(); i++ )
pools_[i].advance( p, &sys_ );
}
else
{
/*-----------------------------------------------------------------------------
* Somewhat complicated computation to compute the number of threads. 1
* thread per (at least) voxel pool is ideal situation.
*-----------------------------------------------------------------------------*/
#if USING_ASYNC
vector<std::future<size_t>> vecFutures;
for (size_t i = 0; i < numThreads_; i++)
vecFutures.push_back(
std::async( THREAD_LAUNCH_POLICY
, [this, i, p](){
return this->advance_chunk(i*this->grainSize_, (i+1)*this->grainSize_, p);
})
);
// Block in same order
size_t tot = 0;
for (auto& fut : vecFutures) tot += fut.get();
// We have processed all the pools.
assert( tot >= pools_.size() );
#else
vector<std::thread> vecThreads;
for (size_t i = 0; i < numThreads_; i++)
{
// Use lambda. It is roughly 10% faster than std::bind and does not
// involve copying data.
vecThreads.push_back(
std::thread(
[this, i, p](){ this->advance_chunk(i*this->grainSize_, (i+1)*this->grainSize_, p); }
)
);
}
for( auto &v : vecThreads )
v.join();
#endif
}
if ( useClockedUpdate_ ) // Check if a clocked stim is to be updated
{
if(numThreads_ == 1)
{
for ( auto &v : pools_ )
v.recalcTime( &sys_, p->currTime );
}
else
{
#if USING_ASYNC
vector<std::future<size_t>> vecFutures;
for (size_t i = 0; i < numThreads_; i++)
vecFutures.push_back(
std::async( THREAD_LAUNCH_POLICY
, [this, i, p](){
return this->recalcTimeChunk(i*this->grainSize_, (i+1)*this->grainSize_, p);
})
);
// Block in same order
size_t tot = 0;
for (auto& fut : vecFutures) tot += fut.get();
assert( tot >= pools_.size() ); // We have processed all the pools.
#else
vector<std::thread> vecThreads;
for (size_t i = 0; i < numThreads_; i++)
{
// Use lambda. It is roughly 10% faster than std::bind and does not
// involve copying data.
vecThreads.push_back(
std::thread(
[this, i, p](){
this->recalcTimeChunk(i*this->grainSize_, (i+1)*this->grainSize_, p);
}
)
);
}
for( auto &v : vecThreads )
v.join();
#endif
}
}
// Finally, assemble and send the integrated values off for the Dsolve.
if ( dsolvePtr_ )
{
vector< double > kvalues( 4 );
kvalues[0] = 0;
kvalues[1] = getNumLocalVoxels();
kvalues[2] = 0;
kvalues[3] = stoichPtr_->getNumVarPools();
getBlock( kvalues );
dsolvePtr_->setBlock( kvalues );
// Now use the values in the Dsolve to update junction fluxes
// for diffusion, channels, and xreacs
dsolvePtr_->updateJunctions( p->dt );
// Here the Gsolve may need to do something to convert to integers
}
}
size_t Gsolve::recalcTimeChunk( const size_t begin, const size_t end, ProcPtr p)
{
assert( begin >= std::min(pools_.size(), end));
size_t tot = 0;
for (size_t i = begin; i < std::min(pools_.size(), end); i++) {
tot += 1;
pools_[i].recalcTime( &sys_, p->currTime );
}
return tot;
}
size_t Gsolve::advance_chunk( const size_t begin, const size_t end, ProcPtr p )
{
assert( begin <= std::min(end, pools_.size()) );
size_t tot = 0;
for (size_t i = begin; i < std::min(end, pools_.size() ); i++)
{
pools_[i].advance( p, &sys_ );
tot += 1;
}
return tot;
}
void Gsolve::reinit( const Eref& e, ProcPtr p )
{
if ( !stoichPtr_ )
return;
if ( !sys_.isReady )
rebuildGssaSystem();
// First reinit concs. We also assign distinct rng seeds per voxel
for( unsigned int i = 0; i < pools_.size(); ++i ) {
pools_[i].reinit( &sys_, (i+1) * rngSeedOffset_ );
}
// Second, update the atots.
for ( auto i = pools_.begin(); i != pools_.end(); ++i )
i->refreshAtot( &sys_ );
// LoadBalancing. Recompute the optimal number of threads.
size_t nvPools = pools_.size( );
grainSize_ = (size_t) std::ceil((double)nvPools / (double)numThreads_);
assert( grainSize_ * numThreads_ >= nvPools);
numThreads_ = (size_t) std::ceil((double)nvPools / (double)grainSize_);
// MOOSE_DEBUG( "Grain size is " << grainSize_ << ". Num threads " << numThreads_);
if(1 < numThreads_)
cout << "Info: Setting up threaded gsolve with " << getNumThreads( )
<< " threads. " << endl;
}
//////////////////////////////////////////////////////////////
// init operations.
//////////////////////////////////////////////////////////////
void Gsolve::initProc( const Eref& e, ProcPtr p )
{;}
void Gsolve::initReinit( const Eref& e, ProcPtr p )
{
if ( !stoichPtr_ )
return;
for( size_t i = 0 ; i < pools_.size(); ++i )
pools_[i].reinit( &sys_, i * rngSeedOffset_ );
}
//////////////////////////////////////////////////////////////
// Solver setup
//////////////////////////////////////////////////////////////
void Gsolve::rebuildGssaSystem()
{
stoichPtr_->convertRatesToStochasticForm();
sys_.transposeN = stoichPtr_->getStoichiometryMatrix();
sys_.transposeN.transpose();
sys_.transposeN.truncateRow( stoichPtr_->getNumVarPools() + stoichPtr_->getNumProxyPools() );
vector< vector< unsigned int > > & dep = sys_.dependency;
dep.resize( stoichPtr_->getNumRates() );
for ( unsigned int i = 0; i < stoichPtr_->getNumRates(); ++i )
{
sys_.transposeN.getGillespieDependence( i, dep[i] );
}
fillMmEnzDep();
fillPoolFuncDep();
fillIncrementFuncDep();
makeReacDepsUnique();
for ( vector< GssaVoxelPools >::iterator
i = pools_.begin(); i != pools_.end(); ++i )
{
i->setNumReac( stoichPtr_->getNumRates() );
i->updateAllRateTerms( stoichPtr_->getRateTerms(),
stoichPtr_->getNumCoreRates() );
}
sys_.isReady = true;
}
/**
* Fill in dependency list for all MMEnzs on reactions.
* The dependencies of MMenz products are already in the system,
* so here we just need to add cases where any reaction product
* is the Enz of an MMEnz.
*/
void Gsolve::fillMmEnzDep()
{
unsigned int numRates = stoichPtr_->getNumRates();
vector< unsigned int > indices;
// Make a map to look up enzyme RateTerm using
// the key of the enzyme molecule.
map< unsigned int, unsigned int > enzMolMap;
for ( unsigned int i = 0; i < numRates; ++i )
{
const MMEnzymeBase* mme = dynamic_cast< const MMEnzymeBase* >(
stoichPtr_->rates( i ) );
if ( mme )
{
vector< unsigned int > reactants;
mme->getReactants( reactants );
if ( reactants.size() > 1 )
enzMolMap[ reactants.front() ] = i; // front is enzyme.
}
}
// Use the map to fill in deps.
for ( unsigned int i = 0; i < numRates; ++i )
{
// Extract the row of all molecules that depend on the reac.
const int* entry;
const unsigned int* colIndex;
unsigned int numInRow =
sys_.transposeN.getRow( i, &entry, &colIndex );
for( unsigned int j = 0; j < numInRow; ++j )
{
map< unsigned int, unsigned int >::iterator pos =
enzMolMap.find( colIndex[j] );
if ( pos != enzMolMap.end() )
sys_.dependency[i].push_back( pos->second );
}
}
}
/**
* Here we fill in the dependencies involving poolFuncs. These are
* the functions that evaluate an expression and assign directly to the
* # of a target molecule.
* There are two dependencies:
* 1. When a reaction fires, all the Functions that depend on the reactants
* must update their target molecule. This is in sys_.dependentMathExpn[].
* 2. All the reactions that depend on the updated target molecules must
* now recompute their propensity. This, along with other reac dependencies,
* is in sys_.dependency[].
*/
void Gsolve::fillPoolFuncDep()
{
// create map of funcs that depend on specified molecule.
vector< vector< unsigned int > > funcMap(
stoichPtr_->getNumAllPools() );
unsigned int numFuncs = stoichPtr_->getNumFuncs();
for ( unsigned int i = 0; i < numFuncs; ++i )
{
const FuncTerm *f = stoichPtr_->funcs( i );
vector< unsigned int > molIndex = f->getReactantIndex();
for ( unsigned int j = 0; j < molIndex.size(); ++j )
funcMap[ molIndex[j] ].push_back( i );
}
// The output of each func is a mol indexed as
// numVarMols + numBufMols + i
unsigned int numRates = stoichPtr_->getNumRates();
sys_.dependentMathExpn.resize( numRates );
vector< unsigned int > indices;
for ( unsigned int i = 0; i < numRates; ++i )
{
vector< unsigned int >& dep = sys_.dependentMathExpn[ i ];
dep.resize( 0 );
// Extract the row of all molecules that depend on the reac.
const int* entry;
const unsigned int* colIndex;
unsigned int numInRow =
sys_.transposeN.getRow( i, &entry, &colIndex );
for ( unsigned int j = 0; j < numInRow; ++j )
{
unsigned int molIndex = colIndex[j];
vector< unsigned int >& funcs = funcMap[ molIndex ];
dep.insert( dep.end(), funcs.begin(), funcs.end() );
for ( unsigned int k = 0; k < funcs.size(); ++k )
{
// unsigned int outputMol = funcs[k] + funcOffset;
unsigned int outputMol = stoichPtr_->funcs( funcs[k] )->getTarget();
// Insert reac deps here. Columns are reactions.
vector< int > e; // Entries: we don't need.
vector< unsigned int > c; // Column index: the reactions.
stoichPtr_->getStoichiometryMatrix().
getRow( outputMol, e, c );
// Each of the reacs (col entries) depend on this func.
vector< unsigned int > rdep = sys_.dependency[i];
rdep.insert( rdep.end(), c.begin(), c.end() );
}
}
}
}
/**
* Here we fill in the dependencies involving incrementFuncs. These are
* the functions that evaluate an expression that specifies rate of change
* of # of a target molecule.
* There are two dependencies:
* 1. When a reaction fires, all the incrementFuncs that depend on the
* reactants must update their rates. This is added to sys_.dependency[]
* which is the usual handler for reac dependencies. Note that the inputs
* to the incrementFuncs are NOT present in the stoichiometry matrix, so
* this has to be done as a separate step.
* 2. When the incrementFunc fires, then downstream reacs must update
* their rates. This is handled by default with the regular dependency
* calculations, since incrementFuncs are treated like regular reactions.
*/
void Gsolve::fillIncrementFuncDep()
{
// create map of funcs that depend on specified molecule.
vector< vector< unsigned int > > funcMap( stoichPtr_->getNumAllPools() );
const vector< RateTerm* >& rates = stoichPtr_->getRateTerms();
vector< FuncRate* > incrementRates;
vector< unsigned int > incrementRateIndex;
const vector< RateTerm* >::const_iterator q;
for ( unsigned int i = 0; i < rates.size(); ++i )
{
FuncRate *term =
dynamic_cast< FuncRate* >( rates[i] );
if (term)
{
incrementRates.push_back( term );
incrementRateIndex.push_back( i );
}
}
for ( unsigned int k = 0; k < incrementRates.size(); ++k )
{
const vector< unsigned int >& molIndex =
incrementRates[k]->getFuncArgIndex();
for ( unsigned int j = 0; j < molIndex.size(); ++j )
funcMap[ molIndex[j] ].push_back( incrementRateIndex[k] );
}
unsigned int numRates = stoichPtr_->getNumRates();
sys_.dependentMathExpn.resize( numRates );
vector< unsigned int > indices;
for ( unsigned int i = 0; i < numRates; ++i )
{
// Algorithm:
// 1.Go through stoich matrix finding all the poolIndices affected
// by each Rate Term.
// 2.Use funcMap to look up FuncRateTerms affected by these indices
// 3. Add the rateTerm->FuncRateTerm mapping to the dependencies.
const int* entry;
const unsigned int* colIndex;
unsigned int numInRow =
sys_.transposeN.getRow( i, &entry, &colIndex );
// 1.Go through stoich matrix finding all the poolIndices affected
// by each Rate Term.
for ( unsigned int j = 0; j < numInRow; ++j )
{
unsigned int molIndex = colIndex[j]; // Affected poolIndex
// 2.Use funcMap to look up FuncRateTerms affected by these indices
vector< unsigned int >& funcs = funcMap[ molIndex ];
// 3. Add the rateTerm->FuncRateTerm mapping to the dependencies.
vector< unsigned int >& rdep = sys_.dependency[i];
rdep.insert( rdep.end(), funcs.begin(), funcs.end() );
}
}
}
/*
void Gsolve::fillMathDep()
{
// create map of funcs that depend on specified molecule.
vector< vector< unsigned int > > funcMap(
stoichPtr_->getNumAllPools() );
unsigned int numFuncs = stoichPtr_->getNumFuncs();
for ( unsigned int i = 0; i < numFuncs; ++i ) {
const FuncTerm *f = stoichPtr_->funcs( i );
vector< unsigned int > molIndex = f->getReactantIndex();
for ( unsigned int j = 0; j < molIndex.size(); ++j )
funcMap[ molIndex[j] ].push_back( i );
}
// The output of each func is a mol indexed as
// numVarMols + numBufMols + i
unsigned int funcOffset =
stoichPtr_->getNumVarPools() + stoichPtr_->getNumProxyPools() + stoichPtr_->getNumBufPools();
unsigned int numRates = stoichPtr_->getNumRates();
sys_.dependentMathExpn.resize( numRates );
vector< unsigned int > indices;
for ( unsigned int i = 0; i < numRates; ++i ) {
vector< unsigned int >& dep = sys_.dependentMathExpn[ i ];
dep.resize( 0 );
// Extract the row of all molecules that depend on the reac.
const int* entry;
const unsigned int* colIndex;
unsigned int numInRow =
sys_.transposeN.getRow( i, &entry, &colIndex );
for ( unsigned int j = 0; j < numInRow; ++j ) {
unsigned int molIndex = colIndex[j];
vector< unsigned int >& funcs = funcMap[ molIndex ];
dep.insert( dep.end(), funcs.begin(), funcs.end() );
for ( unsigned int k = 0; k < funcs.size(); ++k ) {
unsigned int outputMol = funcs[k] + funcOffset;
// Insert reac deps here. Columns are reactions.
vector< int > e; // Entries: we don't need.
vector< unsigned int > c; // Column index: the reactions.
stoichPtr_->getStoichiometryMatrix().
getRow( outputMol, e, c );
// Each of the reacs (col entries) depend on this func.
vector< unsigned int > rdep = sys_.dependency[i];
rdep.insert( rdep.end(), c.begin(), c.end() );
}
}
}
}
*/
/**
* Inserts reactions that depend on molecules modified by the
* specified MathExpn, into the dependency list.
* Later.
*/
void Gsolve::insertMathDepReacs( unsigned int mathDepIndex,
unsigned int firedReac )
{
/*
unsigned int molIndex = sumTotals_[ mathDepIndex ].target( S_ );
vector< unsigned int > reacIndices;
// Extract the row of all reacs that depend on the target molecule
if ( N_.getRowIndices( molIndex, reacIndices ) > 0 ) {
vector< unsigned int >& dep = dependency_[ firedReac ];
dep.insert( dep.end(), reacIndices.begin(), reacIndices.end() );
}
*/
}
// Clean up dependency lists: Ensure only unique entries.
// Also a reac cannot depend on itself.
void Gsolve::makeReacDepsUnique()
{
unsigned int numRates = stoichPtr_->getNumRates();
for ( unsigned int i = 0; i < numRates; ++i )
{
vector< unsigned int >& dep = sys_.dependency[ i ];
// Here we want to remove self-entries as well as duplicates.
sort( dep.begin(), dep.end() );
vector< unsigned int >::iterator k = dep.begin();
/// STL stuff follows, with the usual weirdness.
vector<unsigned int>::iterator pos = unique( dep.begin(), dep.end() );
dep.resize( pos - dep.begin() );
}
}
//////////////////////////////////////////////////////////////
// Solver ops
//////////////////////////////////////////////////////////////
unsigned int Gsolve::getPoolIndex( const Eref& e ) const
{
return stoichPtr_->convertIdToPoolIndex( e.id() );
}
unsigned int Gsolve::getVoxelIndex( const Eref& e ) const
{
unsigned int ret = e.dataIndex();
if ( (ret < startVoxel_) || (ret >= startVoxel_ + pools_.size()))
return OFFNODE;
return ret - startVoxel_;
}
void Gsolve::setDsolve( Id dsolve )
{
if ( dsolve == Id () )
{
dsolvePtr_ = 0;
dsolve_ = Id();
}
else if ( dsolve.element()->cinfo()->isA( "Dsolve" ) )
{
dsolve_ = dsolve;
dsolvePtr_ = reinterpret_cast<KsolveBase*>(dsolve.eref().data());
}
else
{
cout << "Warning: Gsolve::setDsolve: Object '" << dsolve.path() <<
"' should be class Dsolve, is: " <<
dsolve.element()->cinfo()->name() << endl;
}
}
//////////////////////////////////////////////////////////////
// Pool Access functions
//////////////////////////////////////////////////////////////
void Gsolve::setN( const Eref& e, double v )
{
unsigned int vox = getVoxelIndex( e );
if ( vox != OFFNODE )
{
if ( e.element()->cinfo()->isA( "BufPool" ) )
{
// Do NOT round it here, it is folded into rate term.
pools_[vox].setN( getPoolIndex( e ), v );
// refresh rates because concInit controls ongoing value of n.
if ( sys_.isReady )
pools_[vox].refreshAtot( &sys_ );
}
else
{
pools_[vox].setN( getPoolIndex( e ), std::round( v ) );
}
}
}
double Gsolve::getN( const Eref& e ) const
{
unsigned int vox = getVoxelIndex( e );
if ( vox != OFFNODE )
return pools_[vox].getN( getPoolIndex( e ) );
return 0.0;
}
double Gsolve::getR1( unsigned int reacIdx, const Eref& e ) const
{
unsigned int vox = getVoxelIndex( e );
if ( vox != OFFNODE )
return pools_[vox].getR1( reacIdx );
return 0.0;
}