-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfitnessfunction.cpp
More file actions
29 lines (20 loc) · 1 KB
/
fitnessfunction.cpp
File metadata and controls
29 lines (20 loc) · 1 KB
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
#include "fitnessfunction.h"
/******************************************************************************/
/******************************************************************************/
CFitnessFunction::CFitnessFunction(const char* pch_name,
CSimulator* pc_simulator) :
CSimObject(pch_name), m_pcSimulator(pc_simulator)
{
}
/******************************************************************************/
/******************************************************************************/
CFitnessFunction::~CFitnessFunction()
{
}
/******************************************************************************/
/******************************************************************************/
void CFitnessFunction::SimulationStep(unsigned int n_simulation_step, double f_time, double f_step_interval)
{
}
/******************************************************************************/
/******************************************************************************/