forked from ChristophKirst/SimKernel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexpression_sim.cpp
26 lines (19 loc) · 951 Bytes
/
expression_sim.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
/***************************************************************************
expression_sim.cpp - sim specific expressions
Christoph Kirst
Max Planck Institue for Dynamics and Self-Organisation Göttingen
HU Berlin, BCCN Göttingen & Berlin (2008)
****************************************************************************/
#include "expression_sim.h"
EXPR_NAME_IMPL(ExprIterator, "Iterator")
EXPR_NAME_IMPL(ExprIteratorIter, "Iteration")
EXPR_NAME_IMPL(ExprIteratorTotal, "Iterations")
EXPR_NAME_IMPL(ExprCreator, "Creator")
int ExprIterator::level(-1);
int ExprIterator::count(-1);
int ExprIterator::n_iters(-1);
ExprIterator::IteratorCounterStatusT ExprIterator::counter_status(ExprIterator::CNdef);
ExprIterator::IteratorListT ExprIterator::iterators;
ExprIterator::IteratorOrderT ExprIterator::ordering;
ExprCreator::CreatorListT ExprCreator::creators;