Miind
DelayAssemblyAlgorithm.hpp
Go to the documentation of this file.
1 // Copyright (c) 2005 - 2012 Marc de Kamps
2 // 2012 David-Matthias Sichau
3 // All rights reserved.
4 //
5 // Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
6 //
7 // * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation
9 // and/or other materials provided with the distribution.
10 // * Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software
11 // without specific prior written permission.
12 //
13 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
14 // WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY
15 // DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
16 // USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
17 // NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
18 //
19 
20 #ifndef MPILIB_ALGORITHMS_DELAYASSEMBLYALGORITHM_HPP_
21 #define MPILIB_ALGORITHMS_DELAYASSEMBLYALGORITHM_HPP_
22 
23 #include <NumtoolsLib/NumtoolsLib.h>
25 
27 
28 namespace MPILib {
29 
30  template <class WeightType>
31 class DelayAssemblyAlgorithm: public AlgorithmInterface<WeightType> {
32 public:
33 
35 
37 
38  virtual ~DelayAssemblyAlgorithm();
39 
44  virtual DelayAssemblyAlgorithm* clone() const;
45 
50  virtual void configure(const SimulationRunParameter& simParam);
51 
58  virtual void evolveNodeState(const std::vector<Rate>& nodeVector,
59  const std::vector<WeightType>& weightVector, Time time);
60 
65  virtual Time getCurrentTime() const { return _t_current; }
66 
71  virtual Rate getCurrentRate() const {return _r_current; }
72 
73  virtual AlgorithmGrid getGrid(NodeId, bool b_state = true) const;
74 
75 private:
76 
77  double innerProduct(const std::vector<Rate>& nodeVector,
78  const std::vector<double>& weightVector);
79 
80  std::vector<double> getInitialState() const;
81 
85 
86 };
87 
88 } /* namespace MPILib */
89 #endif /* MPILIB_ALGORITHMS_WILSONCOWANALGORITHM_HPP_ */
virtual void configure(const SimulationRunParameter &simParam)
double Time
The interface for all algorithm classes.
std::vector< double > getInitialState() const
unsigned int NodeId
Parameter determining how a simulation is run. Specifiying begin and end time, log file names...
virtual DelayAssemblyAlgorithm * clone() const
virtual void evolveNodeState(const std::vector< Rate > &nodeVector, const std::vector< WeightType > &weightVector, Time time)
double innerProduct(const std::vector< Rate > &nodeVector, const std::vector< double > &weightVector)
virtual AlgorithmGrid getGrid(NodeId, bool b_state=true) const
double Rate