CARLsim  6.1.0
CARLsim: a GPU-accelerated SNN simulator
Experiment.h
Go to the documentation of this file.
1 #ifndef EXPERIMENT_H
2 #define EXPERIMENT_H
3 
4 #include "ParameterInstances.h"
5 
6 #include <ostream>
7 
8 
16 class Experiment {
17 public:
23  virtual void run(const ParameterInstances &parameters, std::ostream &outputStream) const = 0;
24 };
25 
26 
27 #endif // EXPERIMENT_H
virtual void run(const ParameterInstances &parameters, std::ostream &outputStream) const =0