forked from BhallaLab/moose-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRateTerm.cpp
51 lines (47 loc) · 1.41 KB
/
RateTerm.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
/**********************************************************************
** This program is part of 'MOOSE', the
** Messaging Object Oriented Simulation Environment,
** also known as GENESIS 3 base code.
** 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 <math.h>
#include <vector>
#include <algorithm>
#include <cassert>
#include "../basecode/header.h"
#include "RateTerm.h"
using namespace std;
const double RateTerm::EPSILON = 1.0e-6;
StochNOrder::StochNOrder( double k, vector< unsigned int > v )
: NOrder( k, v )
{
// Here we sort the y vector so that if there are repeated
// substrates, they are put consecutively. This lets us use
// the algorithm below to deal with repeats.
sort( v_.begin(), v_.end() );
}
double StochNOrder::operator() ( const double* S ) const
{
double ret = k_;
vector< unsigned int >::const_iterator i;
unsigned int lasty = ~0U;
double y = 0.0;
for ( i = v_.begin(); i != v_.end(); i++)
{
assert( !std::isnan( S[ *i ] ) );
if ( lasty == *i ) {
y -= 1.0;
} else {
y = S[ *i ];
}
ret *= y;
if ( ret < 0.0 ) {
return 0.0;
}
lasty = *i;
}
return ret;
}