INF205/lab_2/12/chain-random-walk.h
2024-02-27 10:31:50 +01:00

12 lines
261 B
C++

#ifndef CHAIN_RANDOM_WALK_H
#define CHAIN_RANDOM_WALK_H
namespace crw
{
float elongation(long size, float config[]);
float* step(long size, float previous[]);
void output(long no, long size, float present[], float extreme[], double avg_el);
}
#endif