INF205/lab_2/12/chain-random-walk.h

12 lines
261 B
C
Raw Permalink Normal View History

2024-02-27 09:31:50 +00:00
#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